24 lines
439 B
Go
24 lines
439 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/hybridgroup/gobot"
|
|
"github.com/hybridgroup/gobot/api"
|
|
)
|
|
|
|
func main() {
|
|
master := gobot.NewGobot()
|
|
a := api.NewAPI(master)
|
|
a.Start()
|
|
|
|
hello := gobot.NewRobot("hello", nil, nil, nil)
|
|
|
|
hello.AddCommand("HiThere", func(params map[string]interface{}) interface{} {
|
|
return []string{fmt.Sprintf("Hey"), fmt.Sprintf("dude!")}
|
|
})
|
|
|
|
master.Robots = append(master.Robots, hello)
|
|
|
|
master.Start()
|
|
}
|