Files
lash/lash.go
2026-05-28 07:55:10 -04:00

17 lines
247 B
Go

package lash
import (
"embed"
"github.com/google/uuid"
)
//go:embed templates/*.html
var Templates embed.FS
//go:embed version
var Version string
// TODO(vxc): Replace this with custom token generator
var Token string = uuid.New().String()