1
0
Fork 0
mirror of https://github.com/fluffle/goirc synced 2025-06-30 18:43:55 +00:00
goirc/server/config/oper.go
2010-11-21 20:07:31 +00:00

16 lines
274 B
Go

package config
type cOper struct {
Username, Password string
HostMask []string
// Permissions for oper
CanKill, CanBan, CanNick, CanLink bool
}
var cOperDefaults = &cOper{
HostMask: []string{"*@*"},
CanKill: true, CanBan: true,
CanNick: false, CanLink: false,
}