Skip to content

Instantly share code, notes, and snippets.

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