1
0
mirror of https://github.com/thebaer/cdr.git synced 2024-11-14 17:21:01 +00:00
cdr/templates.go
Matt Baer 16e4510d9d Use Go's embed pkg instead of inline tool
This moves the minimum requirements to Go 1.16 to build this project.
2022-03-30 23:14:32 -04:00

12 lines
147 B
Go

package cdr
import (
_ "embed"
)
//go:embed mixtape.tmpl
var defaultMixtapeTmpl []byte
//go:embed templates/parts.tmpl
var partsRawTmpl []byte