15 lines
297 B
Go
15 lines
297 B
Go
|
|
package commands
|
||
|
|
|
||
|
|
import "context"
|
||
|
|
|
||
|
|
func startCommand() Definition {
|
||
|
|
return Definition{
|
||
|
|
Name: "start",
|
||
|
|
Description: "Start the bot",
|
||
|
|
Usage: "/start",
|
||
|
|
Handler: func(_ context.Context, req Request, _ *Runtime) error {
|
||
|
|
return req.Reply("Hello! I am PicoClaw 🦞")
|
||
|
|
},
|
||
|
|
}
|
||
|
|
}
|