sum7
/
yaja
Archived
1
0
Fork 0
This repository has been archived on 2020-09-27. You can view files and clone it, but cannot push or open issues or pull requests.
yaja/daemon/tester/config.go

19 lines
435 B
Go
Raw Normal View History

package tester
import (
"dev.sum7.eu/genofire/yaja/model"
log "github.com/sirupsen/logrus"
)
type Config struct {
TLSDir string `toml:"tlsdir"`
StatePath string `toml:"state_path"`
Logging log.Level `toml:"logging"`
Webserver string `toml:"webserver"`
Admins []model.JID `toml:"admins"`
Client struct {
JID model.JID `toml:"jid"`
Password string `toml:"password"`
} `toml:"client"`
}