mirror of
https://code.dnix.de/da/flokatirc
synced 2026-07-27 07:49:44 +02:00
Gogs module.
This commit is contained in:
@@ -0,0 +1,26 @@
|
|||||||
|
// vi:ts=4:sts=4:sw=4:noet:tw=72
|
||||||
|
|
||||||
|
package modules
|
||||||
|
|
||||||
|
import (
|
||||||
|
"log"
|
||||||
|
"strings"
|
||||||
|
|
||||||
|
"github.com/sorcix/irc"
|
||||||
|
)
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
MsgHandlers["fuzzytime"] = gogsHandleMessage
|
||||||
|
log.Println("Initializing gogs module")
|
||||||
|
}
|
||||||
|
|
||||||
|
func gogsHandleMessage(m *irc.Message) {
|
||||||
|
tok := strings.Split(m.Trailing, " ")
|
||||||
|
if len(tok) < 1 {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
switch tok[0] {
|
||||||
|
case "!gogs":
|
||||||
|
default:
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user