mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-06-04 11:25:52 +08:00

### Summary Add `render` package #### Related Issues / PR's https://github.com/SigNoz/signoz/pull/5710
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 }
|