mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-06-04 11:25:52 +08:00
14 lines
229 B
Go
14 lines
229 B
Go
package formatter
|
|
|
|
import "fmt"
|
|
|
|
type noneFormatter struct{}
|
|
|
|
func NewNoneFormatter() Formatter {
|
|
return &noneFormatter{}
|
|
}
|
|
|
|
func (f *noneFormatter) Format(value float64, unit string) string {
|
|
return fmt.Sprintf("%v", value)
|
|
}
|