yoake/config/comm.go
2022-11-11 17:16:53 -05:00

26 lines
306 B
Go

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
}