cosmos-sdk/core/server/config.go
2024-09-12 06:00:42 +00:00

9 lines
215 B
Go

package server
// DynamicConfig defines an interface for configuration that can be dynamically
// fetched at runtime by an arbitrary key.
type DynamicConfig interface {
Get(string) any
GetString(string) string
}