Skip to content

Instantly share code, notes, and snippets.

@Israel-Miles
Created November 11, 2020 20:00
Show Gist options
  • Save Israel-Miles/eed8dca591113f0bc4605c38b6aef423 to your computer and use it in GitHub Desktop.
Save Israel-Miles/eed8dca591113f0bc4605c38b6aef423 to your computer and use it in GitHub Desktop.
command-pattern
package main
type offCommand struct {
device device
}
func (c *offCommand) execute() {
c.device.off()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment