aboutsummaryrefslogtreecommitdiff
path: root/forged/internal/ipc/irc/config.go
blob: b1b5703d196813d938e1b10c1f9e58d8e3182c05 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13

package irc

// Config contains IRC connection and identity settings for the bot.
// This should usually be a part of the primary config struct.
type Config struct {
	Net   string `scfg:"net"`
	Addr  string `scfg:"addr"`
	TLS   bool   `scfg:"tls"`
	SendQ uint   `scfg:"sendq"`
	Nick  string `scfg:"nick"`
	User  string `scfg:"user"`
	Gecos string `scfg:"gecos"`
}