mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-18 07:56:56 +00:00
10 lines
168 B
Go
10 lines
168 B
Go
|
|
package render
|
||
|
|
|
||
|
|
var (
|
||
|
|
StatusSuccess status = status{"success"}
|
||
|
|
StatusError = status{"error"}
|
||
|
|
)
|
||
|
|
|
||
|
|
// Defines custom error types
|
||
|
|
type status struct{ s string }
|