mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 08:49:13 +00:00
11 lines
351 B
Go
11 lines
351 B
Go
package domain
|
|
|
|
type Config struct {
|
|
Host string `toml:"host"`
|
|
Port int `toml:"port"`
|
|
LogLevel string `toml:"logLevel"`
|
|
LogPath string `toml:"logPath"`
|
|
BaseURL string `toml:"baseUrl"`
|
|
SessionSecret string `toml:"sessionSecret"`
|
|
CustomDefinitions string `toml:"customDefinitions"`
|
|
}
|