mirror of
https://github.com/SigNoz/signoz.git
synced 2026-02-19 07:22:29 +00:00
12 lines
287 B
Go
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)
|
|
}
|