BrainMinder/cmd/web/config.go
2025-04-16 18:04:28 +02:00

25 lines
372 B
Go

package main
type config struct {
publicBaseURL string
baseURL string
httpPort int
cookie struct {
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
}
}