2018-07-12 07:43:49 +08:00
|
|
|
package processes
|
2022-05-24 21:49:47 +08:00
|
|
|
|
|
|
|
|
import _ "embed"
|
|
|
|
|
|
|
|
|
|
// DO NOT REMOVE THE NEXT TWO LINES! This is required to embedd the sampleConfig data.
|
|
|
|
|
//go:embed sample.conf
|
|
|
|
|
var sampleConfig string
|
|
|
|
|
|
|
|
|
|
func (*Processes) SampleConfig() string {
|
|
|
|
|
return sampleConfig
|
|
|
|
|
}
|