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

16 lines
197 B
Go

package svg
import "fmt"
type (
Stroke string
)
func (Stroke) PrintKey() string {
return "stroke"
}
func (s Stroke) PrintValue() (string, bool) {
return fmt.Sprintf(`%q`, string(s)), true
}