BrainMinder/cmd/web/config.go

26 lines
372 B
Go
Raw Normal View History

2024-08-22 10:13:16 +02:00
package main
type config struct {
2025-04-16 18:04:28 +02:00
publicBaseURL string
baseURL string
httpPort int
cookie struct {
2024-08-22 10:13:16 +02:00
secretKey string
}
db struct {
dsn string
automigrate bool
}
session struct {
secretKey string
oldSecretKey string
}
smtp struct {
host string
port int
username string
password string
from string
}
}