diff options
Diffstat (limited to 'autostart.go')
-rw-r--r-- | autostart.go | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/autostart.go b/autostart.go deleted file mode 100644 index 62f30cc..0000000 --- a/autostart.go +++ /dev/null @@ -1,16 +0,0 @@ -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 -} |