11 lines
251 B
Go
11 lines
251 B
Go
package domain
|
|
|
|
type Config struct {
|
|
ConfigPath string
|
|
Host string `toml:"host"`
|
|
Port string `toml:"port"`
|
|
DbName string `toml:"dbName"`
|
|
UploadFolder string `toml:"uploadFolder"`
|
|
TMDbApiKey string `toml:"tmdbApiKey"`
|
|
}
|