12 lines
161 B
Go
12 lines
161 B
Go
|
package libnmdc
|
||
|
|
||
|
type Protocol interface {
|
||
|
ProcessCommand(msg string)
|
||
|
|
||
|
SayPublic(string)
|
||
|
|
||
|
SayPrivate(user, message string)
|
||
|
|
||
|
ProtoMessageSeparator() string
|
||
|
}
|