talent/files.go

18 lines
240 B
Go
Raw Permalink Normal View History

2022-01-04 05:01:42 +00:00
package main
2022-01-04 07:09:46 +00:00
import (
_ "embed"
)
2022-01-04 05:01:42 +00:00
2022-01-04 07:09:46 +00:00
//go:embed tmpl/check.html
2022-01-04 05:01:42 +00:00
var check_web []byte
2022-01-04 07:09:46 +00:00
//go:embed tmpl/profile.html
2022-01-04 05:01:42 +00:00
var profile_web []byte
2022-01-04 07:09:46 +00:00
//go:embed tmpl/claim.html
2022-01-04 05:01:42 +00:00
var claim_web []byte
2022-01-04 07:09:46 +00:00
//go:embed tmpl/product.html
2022-01-04 05:01:42 +00:00
var product_web []byte