25 lines
335 B
Go
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
|
||
|
}
|
||
|
}
|