Files
goth.stack/lib/links.go
T
2024-04-12 11:31:41 -06:00

27 lines
336 B
Go

package lib
import (
"html/template"
)
type IconLink struct {
Name string
Href string
Icon template.HTML
}
type CardLink struct {
Name string
Href string
Description string
Date string
Tags []string
Internal bool
}
type ButtonLink struct {
Name string
Href string
Internal bool
}