summaryrefslogtreecommitdiff
path: root/autostart.go
diff options
context:
space:
mode:
authorRuben Pollan <meskio@sindominio.net>2019-01-12 18:18:23 +0100
committerRuben Pollan <meskio@sindominio.net>2019-01-15 14:39:21 +0100
commitbea32af5d45702e5608d347bf2bf6314d899f2e0 (patch)
tree3a3b65123a751624a866176d9d59424707474363 /autostart.go
parent933ad2aeda754499753e91be05aa9f5556539d35 (diff)
[feat] Reorganize code
Let's use a more structured folder system: https://github.com/golang-standards/project-layout - Resolves: #99
Diffstat (limited to 'autostart.go')
-rw-r--r--autostart.go16
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
-}