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
465 B
Go
Raw Normal View History

package tester
import (
"dev.sum7.eu/genofire/yaja/model"
log "github.com/sirupsen/logrus"
)
type Config struct {
2018-02-10 13:34:42 +01:00
TLSDir string `toml:"tlsdir"`
AccountsPath string `toml:"accounts_path"`
OutputPath string `toml:"output_path"`
Logging log.Level `toml:"logging"`
Admins []*model.JID `toml:"admins"`
Client struct {
JID *model.JID `toml:"jid"`
Password string `toml:"password"`
} `toml:"client"`
}