tulip/server/conf.go

13 lines
322 B
Go
Raw Normal View History

2023-10-10 18:06:43 +01:00
package server
2023-09-06 22:20:09 +01:00
2023-09-24 18:24:16 +01:00
import "github.com/1f349/tulip/mail"
2023-10-10 18:06:43 +01:00
type Conf struct {
2023-09-24 18:24:16 +01:00
Listen string `json:"listen"`
BaseUrl string `json:"base_url"`
OtpIssuer string `json:"otp_issuer"`
ServiceName string `json:"service_name"`
2023-10-10 18:06:43 +01:00
Namespace string `json:"namespace"`
2023-09-24 18:24:16 +01:00
Mail mail.Mail `json:"mail"`
2023-09-06 22:20:09 +01:00
}