summaryrefslogtreecommitdiffstats
path: root/model/command.go
diff options
context:
space:
mode:
authornickago <ngonella@calpoly.edu>2015-08-17 13:13:27 -0700
committernickago <ngonella@calpoly.edu>2015-08-25 07:17:10 -0700
commit19a48acfc60ffa3500360474362bb5c52c12f278 (patch)
treec874d66ce2bcb67ab86add1aac9007e84e26407f /model/command.go
parent70da0dbec6ed35cfc3196d50db4209378549fd92 (diff)
downloadchat-19a48acfc60ffa3500360474362bb5c52c12f278.tar.gz
chat-19a48acfc60ffa3500360474362bb5c52c12f278.tar.bz2
chat-19a48acfc60ffa3500360474362bb5c52c12f278.zip
Created a /echo command that will post on the user's behalf after
a specified amount of time
Diffstat (limited to 'model/command.go')
-rw-r--r--model/command.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/model/command.go b/model/command.go
index 23573205e..83243cc98 100644
--- a/model/command.go
+++ b/model/command.go
@@ -14,7 +14,7 @@ const (
type Command struct {
Command string `json:"command"`
- Response string `json:"reponse"`
+ Response string `json:"response"`
GotoLocation string `json:"goto_location"`
ChannelId string `json:"channel_id"`
Suggest bool `json:"-"`