Add admin UI
Some checks failed
Some checks failed
This commit is contained in:
@@ -17,6 +17,7 @@ type Config struct {
|
||||
Logging LoggingConfig `yaml:"logging"`
|
||||
RateLimit RateLimitConfig `yaml:"rate_limit"`
|
||||
Observability ObservabilityConfig `yaml:"observability"`
|
||||
Admin AdminConfig `yaml:"admin"`
|
||||
}
|
||||
|
||||
// ConversationConfig controls conversation storage.
|
||||
@@ -93,6 +94,11 @@ type AuthConfig struct {
|
||||
Audience string `yaml:"audience"`
|
||||
}
|
||||
|
||||
// AdminConfig controls the admin UI.
|
||||
type AdminConfig struct {
|
||||
Enabled bool `yaml:"enabled"`
|
||||
}
|
||||
|
||||
// ServerConfig controls HTTP server values.
|
||||
type ServerConfig struct {
|
||||
Address string `yaml:"address"`
|
||||
|
||||
Reference in New Issue
Block a user