Files
signoz/pkg/modules/fields/handler.go
2026-02-09 13:43:36 +05:30

12 lines
287 B
Go

package fields
import "net/http"
type Handler interface {
// Gets the fields keys for the given field key selector
GetFieldsKeys(http.ResponseWriter, *http.Request)
// Gets the fields values for the given field value selector
GetFieldsValues(http.ResponseWriter, *http.Request)
}