yoake/config/comm.go

27 lines
306 B
Go
Raw Normal View History

2022-11-11 16:15:22 -06:00
package config
type Communication struct {
Gotify CommGotify
Email CommEmail
}
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
}