Files
inventory-plus-plus/server/ui/svg/line.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

32 lines
374 B
Go

package svg
type (
Line = VoidElement[LineTag, LineAttribute]
LineTag struct{}
LineAttribute interface {
Attribute
IsLineAttribute()
}
)
func (LineTag) PrintTag() string {
return "line"
}
func (X1) IsLineAttribute() {
}
func (X2) IsLineAttribute() {
}
func (Y1) IsLineAttribute() {
}
func (Y2) IsLineAttribute() {
}
func (PathLength) IsLineAttribute() {
}