4 lines
126 B
Go
4 lines
126 B
Go
package chart
|
|
|
|
// Formatter is a function that takes a value and produces a string.
|
|
type Formatter func(v interface{}) string
|