1 2 3 4 5 6 7 8 9 10 11 12 13 14
package main import ( "strings" "github.com/HimbeerserverDE/mt-multiserver-proxy" ) func init() { testCmd := func(cc *proxy.ClientConn, args ...string) string { return strings.Join(args, " ") } proxy.RegisterChatCmd("test", testCmd) }