8 lines
151 B
Go
8 lines
151 B
Go
|
package persistent
|
||
|
|
||
|
type persistent struct {
|
||
|
IgnoredChannels map[string]bool `toml:"ignored_channels"`
|
||
|
}
|
||
|
|
||
|
var IgnoredChannels = make(map[string]bool)
|