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 } }