flokati/modules/gogs.go

36 lines
490 B
Go
Raw Permalink Normal View History

2016-03-02 12:20:35 +00:00
// vi:ts=4:sts=4:sw=4:noet:tw=72
2016-03-02 14:07:46 +00:00
// this module will provide an interface to gogs
2016-03-02 12:20:35 +00:00
package modules
import (
"strings"
2016-03-02 14:07:46 +00:00
"time"
2016-03-02 12:20:35 +00:00
)
2016-03-02 14:07:46 +00:00
var (
gogsAPIKey string
)
2016-03-02 12:20:35 +00:00
func init() {
MsgFuncs["gogs"] = gogsHandleMessage
RunFuncs["gogs"] = gogsConfig
2016-03-02 12:20:35 +00:00
}
2016-03-02 14:07:46 +00:00
func gogsConfig() {
time.Sleep(5 * time.Second)
2017-06-28 11:08:23 +00:00
//gogsAPIKey = ModParams["gogs-api-key"]
2016-03-02 14:07:46 +00:00
}
2017-06-28 21:28:39 +00:00
func gogsHandleMessage(m *Message) {
tok := strings.Split(m.Text, " ")
2016-03-02 12:20:35 +00:00
if len(tok) < 1 {
return
}
switch tok[0] {
case "!gogs":
default:
}
}