mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-21 13:19:53 -06:00
14 lines
217 B
Go
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
|
|
}
|