12 lines
157 B
Go
12 lines
157 B
Go
package main
|
|
|
|
type Conf struct {
|
|
DB struct {
|
|
Driver string
|
|
ConnectTo string `yaml:"connect_to"`
|
|
} `yaml:"db"`
|
|
Logging struct {
|
|
Level string
|
|
}
|
|
}
|