package servers import "net" type Bot struct { conn net.Conn } func NewBot(conn net.Conn) *Bot { ret := &Bot{} ret.conn = conn return ret }