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