2022-11-16 00:15:35 +08:00
|
|
|
//go:generate ../../../tools/readme_config_includer/generator
|
2019-11-09 03:55:37 +08:00
|
|
|
package ethtool
|
|
|
|
|
|
|
|
|
|
import (
|
2022-05-24 21:49:47 +08:00
|
|
|
_ "embed"
|
2019-11-09 03:55:37 +08:00
|
|
|
)
|
|
|
|
|
|
2022-05-24 21:49:47 +08:00
|
|
|
//go:embed sample.conf
|
|
|
|
|
var sampleConfig string
|
|
|
|
|
|
2024-10-24 17:03:42 +08:00
|
|
|
const pluginName = "ethtool"
|
2019-11-09 03:55:37 +08:00
|
|
|
|
2022-05-24 21:49:47 +08:00
|
|
|
func (*Ethtool) SampleConfig() string {
|
|
|
|
|
return sampleConfig
|
|
|
|
|
}
|