Files
inventory-plus-plus/server/ui/svg/g.go
T
angel 50adc8e2de
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 5s
Tests / Go tests (push) Failing after 20s
prototyped svg reports
2026-08-20 00:35:13 -06:00

38 lines
413 B
Go

package svg
type (
G struct {
Element[GTag, GAttribute, GChildren]
}
GTag struct{}
GAttribute interface {
Attribute
IsGAttribute()
}
GChildren = MarshalerReader
)
func (GTag) PrintTag() string {
return "g"
}
func (Transform) IsGAttribute() {
}
func (X) IsGAttribute() {
}
func (XP) IsGAttribute() {
}
func (Y) IsGAttribute() {
}
func (YP) IsGAttribute() {
}
func (Class) IsGAttribute() {
}