pollo/lib/links.go
Atridad Lahiji 3d719132f1
Init
2024-02-15 09:07:09 -07:00

20 lines
259 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
}