Files
signoz/pkg/http/render/status.go
Vikrant Gupta 2163e1ce41 chore(lint): enable godot and staticcheck (#10775)
* chore(lint): enable godot and staticcheck

* chore(lint): merge main and fix new lint issues in main
2026-03-31 09:11:49 +00:00

14 lines
218 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
}