Files
signoz/pkg/http/render/status.go
Pandey 8771919de6 feat(gen): add cobra command for generating openapi spec (#9803)
add cobra command for auto-generating openapi spec
2025-12-15 17:48:30 +05:30

14 lines
217 B
Go

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