tulip/cmd/tulip/conf.go

12 lines
287 B
Go
Raw Normal View History

2023-09-06 22:20:09 +01:00
package main
2023-09-24 18:24:16 +01:00
import "github.com/1f349/tulip/mail"
2023-09-06 22:20:09 +01:00
type startUpConfig 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"`
Mail mail.Mail `json:"mail"`
2023-09-06 22:20:09 +01:00
}