7 lines
202 B
Go
7 lines
202 B
Go
|
package config
|
||
|
|
||
|
type CentralConfig struct {
|
||
|
URL string `json:"url" yaml:"url" toml:"url"`
|
||
|
EntryPoints map[string]string `json:"entryPoints" yaml:"entryPoints" toml:"entryPoints"`
|
||
|
}
|