Skip to content

Instantly share code, notes, and snippets.

@markphelps
Last active November 4, 2016 00:16
Show Gist options
  • Save markphelps/051d344a89b030a1652ce7b5d0b1bca7 to your computer and use it in GitHub Desktop.
Save markphelps/051d344a89b030a1652ce7b5d0b1bca7 to your computer and use it in GitHub Desktop.
type conversation struct {
userID string
incoming chan *slack.MessageEvent
state chatFn
}
// conversations represents all convos in progress
// maps userID -> conversation pointer
var conversations = make(map[string]*conversation)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment