missing commas
This commit is contained in:
8
main.go
8
main.go
@ -34,7 +34,7 @@ func main() {
|
||||
Run: keybasebot.Adapt(
|
||||
cmd.SendPong,
|
||||
keybasebot.MessageType("text"),
|
||||
keybasebot.CommandPrefix("!ping")
|
||||
keybasebot.CommandPrefix("!ping"),
|
||||
),
|
||||
},
|
||||
keybasebot.BotCommand{
|
||||
@ -43,7 +43,7 @@ func main() {
|
||||
Run: keybasebot.Adapt(
|
||||
cmd.Age,
|
||||
keybasebot.MessageType("text"),
|
||||
keybasebot.CommandPrefix("!age")
|
||||
keybasebot.CommandPrefix("!age"),
|
||||
),
|
||||
},
|
||||
keybasebot.BotCommand{
|
||||
@ -52,7 +52,7 @@ func main() {
|
||||
Run: keybasebot.Adapt(
|
||||
cmd.Convert,
|
||||
keybasebot.MessageType("text"),
|
||||
keybasebot.CommandPrefix("!convert")
|
||||
keybasebot.CommandPrefix("!convert"),
|
||||
),
|
||||
},
|
||||
keybasebot.BotCommand{
|
||||
@ -61,7 +61,7 @@ func main() {
|
||||
Run: keybasebot.Adapt(
|
||||
cmd.SendPrice,
|
||||
keybasebot.MessageType("text"),
|
||||
keybasebot.CommandPrefix("!price")
|
||||
keybasebot.CommandPrefix("!price"),
|
||||
),
|
||||
},
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user