18 lines
177 B
Go
18 lines
177 B
Go
package main
|
|
|
|
type commandId int
|
|
|
|
const (
|
|
CMD_NICK = iota
|
|
CMD_JOIN
|
|
CMD_ROOMS
|
|
CMD_MSG
|
|
CMD_QUIT
|
|
)
|
|
|
|
type command struct {
|
|
id commandId
|
|
client *client
|
|
args []string
|
|
}
|