mirror of
https://code.dnix.de/da/flokatirc
synced 2026-07-27 11:29:45 +02:00
Announcement commands (annadd, anndel, annlist).
This commit is contained in:
@@ -4,6 +4,7 @@ package announcements
|
||||
|
||||
import (
|
||||
"log"
|
||||
"strings"
|
||||
|
||||
"github.com/sorcix/irc"
|
||||
)
|
||||
@@ -18,4 +19,17 @@ func Init(ch chan string) {
|
||||
}
|
||||
|
||||
func HandleMessage(m *irc.Message) {
|
||||
tok := strings.Split(m.Trailing, " ")
|
||||
if len(tok) < 1 {
|
||||
return
|
||||
}
|
||||
switch tok[0] {
|
||||
case "!annadd":
|
||||
/* add announcement */
|
||||
case "!anndel":
|
||||
/* delete announcement */
|
||||
case "!annlist":
|
||||
/* list announcement */
|
||||
default:
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user