Skip to content

Instantly share code, notes, and snippets.

@nickknissen
Last active August 29, 2015 14:13
Show Gist options
  • Save nickknissen/ce63024b892aa3924cf4 to your computer and use it in GitHub Desktop.
Save nickknissen/ce63024b892aa3924cf4 to your computer and use it in GitHub Desktop.
test.go
newCommand := YakyCommand{
Name: "join-room",
HelpText: "i will join a room",
Commmand: func(yaky *Yaky, user string, args []string) error {
yaky.JoinRoom(args[0])
return nil
},
}
yaky.AddCommand(newCommand)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment