yoake/config/comm.go

33 lines
391 B
Go
Raw Normal View History

2022-11-11 16:15:22 -06:00
package config
type Communication struct {
2022-11-19 11:04:03 -06:00
Gotify CommGotify
Email CommEmail
Telegram CommTelegram
}
type CommTelegram struct {
Token string
Owner string
2022-11-11 16:15:22 -06:00
}
type CommEmail struct {
SMTP struct {
Host string
Port int
From string
To string
UserName string
Password string
DefaultSubject string
}
}
type CommGotify struct {
BaseURL string
AppToken string
}