feat(indexers): load custom definitions (#186)

This commit is contained in:
Ludvig Lundgren 2022-03-20 14:35:33 +01:00 committed by GitHub
parent 159133ef35
commit fdf69e6403
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 147 additions and 14 deletions

View file

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