Andrey Ivanov 9f11fbd8ae Core app
2021-01-07 15:33:06 -05:00

19 lines
208 B
Go
Executable File

package models
type Configuration struct {
Server Server
DSN DSN
}
type Server struct {
Address string
Port string
}
type DSN struct {
Host string
Port string
User string
Pass string
Base string
}