Skip to content

Instantly share code, notes, and snippets.

@incfly
Created June 2, 2022 22:02
Show Gist options
  • Save incfly/a20a7068c16f8fb48fdd5420f447c632 to your computer and use it in GitHub Desktop.
Save incfly/a20a7068c16f8fb48fdd5420f447c632 to your computer and use it in GitHub Desktop.
package main
type eventType int
const (
addWord eventType = 0
removeWord
)
type event struct {
et eventType
word string
}
type Controller struct {
}
func (c *Controller) Start(wc chan event) {
}
func (c *Controller) All() []string {
return nil
}
func main() {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment