forked from ebhomengo/niki
15 lines
242 B
Go
15 lines
242 B
Go
|
package config
|
||
|
|
||
|
import (
|
||
|
"git.gocasts.ir/ebhomengo/niki/repository/mysql"
|
||
|
)
|
||
|
|
||
|
type HTTPServer struct {
|
||
|
Port int `koanf:"port"`
|
||
|
}
|
||
|
|
||
|
type Config struct {
|
||
|
HTTPServer HTTPServer `koanf:"http_server"`
|
||
|
Mysql mysql.Config `koanf:"mysql"`
|
||
|
}
|