Skip to content
Snippets Groups Projects
Select Git revision
  • fix_heic
  • master default
  • 0.13.5 protected
  • 0.13.4 protected
  • 0.13.3 protected
  • 0.13.2 protected
  • 0.13.1 protected
  • 0.13.0 protected
  • 0.12.4 protected
  • 0.12.3 protected
  • 0.12.2 protected
  • 0.12.1 protected
  • 0.12.0 protected
  • 0.11.0 protected
  • 0.10.1 protected
  • 0.10.0 protected
  • 0.9.0 protected
  • 0.8.0 protected
  • 0.7.0 protected
  • 0.6.0 protected
  • 0.5.0 protected
  • 0.4.0 protected
22 results

__init__.py

Blame
  • autostart.go 221 B
    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
    }