mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-07-27 19:22:02 +08:00
21 lines
368 B
Go
21 lines
368 B
Go
package apdex
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
|
|
"github.com/SigNoz/signoz/pkg/types/apdextypes"
|
|
)
|
|
|
|
type Module interface {
|
|
Get(context.Context, string, []string) ([]*apdextypes.Settings, error)
|
|
|
|
Set(context.Context, string, *apdextypes.Settings) error
|
|
}
|
|
|
|
type Handler interface {
|
|
Get(http.ResponseWriter, *http.Request)
|
|
|
|
Set(http.ResponseWriter, *http.Request)
|
|
}
|