1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package main type autostart interface { Disable() error Enable() error } type dummyAutostart struct{} func (a *dummyAutostart) Disable() error { return nil } func (a *dummyAutostart) Enable() error { return nil }