libnmdc/Protocol.go

12 lines
161 B
Go
Raw Normal View History

package libnmdc
type Protocol interface {
ProcessCommand(msg string)
SayPublic(string)
SayPrivate(user, message string)
ProtoMessageSeparator() string
}