Files
inventory-plus-plus/server/ui/svg/fill.go
T
2026-07-18 18:24:37 -06:00

16 lines
189 B
Go

package svg
import "fmt"
type (
Fill string
)
func (Fill) PrintKey() string {
return "fill"
}
func (f Fill) PrintValue() (string, bool) {
return fmt.Sprintf(`%q`, string(f)), true
}