Files
inventory-plus-plus/server/ui/svg/line.go
T
angel 82efe19ae0
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s
prototyped svg reports
2026-08-19 23:19:41 -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() {
}