mirror of
https://github.com/SigNoz/signoz.git
synced 2026-02-03 08:33:26 +00:00
* feat(global): add global config support * feat(global): revert factory name changes * feat(global): add global config support
12 lines
156 B
Go
12 lines
156 B
Go
package global
|
|
|
|
import "net/http"
|
|
|
|
type Global interface {
|
|
GetConfig() Config
|
|
}
|
|
|
|
type Handler interface {
|
|
GetConfig(http.ResponseWriter, *http.Request)
|
|
}
|