aboutsummaryrefslogtreecommitdiff
path: root/chatcommands.go
blob: 6bead9ffe142349d6d7eea652d03ce410de1d0c5 (plain) (blame)
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)
}