This commit is contained in:
2023-04-16 12:21:01 +07:00
parent 4ba1f9aeac
commit a44381323a
13 changed files with 642 additions and 65 deletions

10
internal/domain/config.go Normal file
View File

@ -0,0 +1,10 @@
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"`
}