signoz/pkg/http/render/status.go

10 lines
168 B
Go
Raw Permalink Normal View History

package render
var (
StatusSuccess status = status{"success"}
StatusError = status{"error"}
)
// Defines custom error types
type status struct{ s string }