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

20 lines
259 B
Go

package svg
import "fmt"
const (
XMLNSW32000SVG XMLNS = "http://www.w3.org/2000/svg"
)
type (
XMLNS string
)
func (v XMLNS) PrintKey() string {
return "xmlns"
}
func (v XMLNS) PrintValue() (string, bool) {
return fmt.Sprintf("%q", string(v)), true
}