1
0
Fork 0
forked from External/ergo

Clean up BaseCommand interface. Make NickServ a Service.

This commit is contained in:
Jeremy Latt 2013-05-09 09:12:03 -07:00
parent 4b0cfa816c
commit 39f815df01
5 changed files with 79 additions and 77 deletions

View file

@ -27,11 +27,6 @@ type Client struct {
replies chan<- Reply
}
type ClientMessage interface {
Client() *Client
SetClient(*Client)
}
type ClientSet map[*Client]bool
func NewClient(server *Server, conn net.Conn) *Client {