talent/files.go

18 lines
240 B
Go

package main
import (
_ "embed"
)
//go:embed tmpl/check.html
var check_web []byte
//go:embed tmpl/profile.html
var profile_web []byte
//go:embed tmpl/claim.html
var claim_web []byte
//go:embed tmpl/product.html
var product_web []byte