Skip to content

Instantly share code, notes, and snippets.

@rightfold
Created December 25, 2015 16:48
Show Gist options
  • Save rightfold/f119102316670157ec7b to your computer and use it in GitHub Desktop.
Save rightfold/f119102316670157ec7b to your computer and use it in GitHub Desktop.
package config
type MonitorID uint32
type Monitor struct {
ID MonitorID
Name string
}
package monitor
type Monitor interface {
Start() error
Stop() error
Started() bool
Subscribe(func(*Event)) func()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment