mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-18 07:56:56 +00:00
11 lines
187 B
Go
11 lines
187 B
Go
|
|
package api
|
||
|
|
|
||
|
|
import (
|
||
|
|
"net/http"
|
||
|
|
)
|
||
|
|
|
||
|
|
func (ah *APIHandler) getFeatureFlags(w http.ResponseWriter, r *http.Request) {
|
||
|
|
featureSet := ah.FF().GetFeatureFlags()
|
||
|
|
ah.Respond(w, featureSet)
|
||
|
|
}
|