Automatic group adding

This commit is contained in:
Horscchtey 2022-02-03 21:08:20 +00:00
commit fe7055298a
4 changed files with 178 additions and 162 deletions

8
conf.go Normal file
View file

@ -0,0 +1,8 @@
package main
type Boddle struct {
name string `cfg:"name; boddle; printableascii; IRC nick of bot"`
channels []string `cfg:"channels; required; printableascii; Channel list to join to"`
server string `cfg:"server; required; netaddr; Server name to connect to"`
database string `cfg:"database; ./boddle.db; path; Path to database"`
}