Files
inventory-plus-plus/server/ui/svg/line.go
T
angel fb2f4255f4
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s
Tests / Go tests (push) Failing after 15s
prototyped svg reports
2026-08-20 00:23:54 -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() {
}