diff options
author | kali kaneko (leap communications) <kali@leap.se> | 2020-06-12 19:05:59 +0200 |
---|---|---|
committer | kali kaneko (leap communications) <kali@leap.se> | 2020-06-12 20:03:03 +0200 |
commit | 1038fa83b820bbdaa9bcf37118cf23b0e48a86c5 (patch) | |
tree | d403cffa091932c1c46ea17fd15da588c1e5a7a2 /pkg/bitmask/autostart.go | |
parent | 971c28f6563de35b1d66401d6919f86787af0611 (diff) |
[refactor] reorganize modules
bitmaskd: so long and thanks for all the fish!
Signed-off-by: kali kaneko (leap communications) <kali@leap.se>
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 } |