This repository has been archived on 2024-08-30. You can view files and clone it, but cannot push or open issues or pull requests.
RaceBot/internal/domain/config.go
2023-04-16 12:21:01 +07:00

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"`
}