20 lines
341 B
Go
20 lines
341 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"github.com/bdlm/std/logger"
|
||
|
|
||
|
"dev.sum7.eu/ccchb/ccchatbot/schalter"
|
||
|
)
|
||
|
|
||
|
type Config struct {
|
||
|
LogLevel logger.Level `toml:"log_level"`
|
||
|
|
||
|
XMPP struct {
|
||
|
Host string `toml:"host"`
|
||
|
JID string `toml:"jid"`
|
||
|
Password string `toml:"password"`
|
||
|
} `toml:"xmpp"`
|
||
|
|
||
|
Schalter schalter.Schalter `toml:"schalter"`
|
||
|
}
|