BrainMinder/cmd/web/config.go
2024-08-22 10:13:16 +02:00

25 lines
335 B
Go

package main
type config struct {
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
}
}