1
0
Fork 0
mirror of https://github.com/postmannen/ctrl.git synced 2025-01-08 21:19:16 +00:00
ctrl/cmd/stew/main.go

22 lines
235 B
Go
Raw Normal View History

2021-06-14 04:49:47 +00:00
package main
import (
"log"
"github.com/RaaLabs/steward"
)
func main() {
stew, err := steward.NewStew()
if err != nil {
log.Printf("%v\n", err)
return
}
err = stew.Start()
if err != nil {
log.Printf("%v\n", err)
}
}