diff options
Diffstat (limited to 'pkg/bitmask/autostart.go')
-rw-r--r-- | pkg/bitmask/autostart.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pkg/bitmask/autostart.go b/pkg/bitmask/autostart.go index 32b931a..ebab428 100644 --- a/pkg/bitmask/autostart.go +++ b/pkg/bitmask/autostart.go @@ -21,12 +21,12 @@ type Autostart interface { Enable() error } -type DummyAutostart struct{} +type dummyAutostart struct{} -func (a *DummyAutostart) Disable() error { +func (a *dummyAutostart) Disable() error { return nil } -func (a *DummyAutostart) Enable() error { +func (a *dummyAutostart) Enable() error { return nil } |