summaryrefslogtreecommitdiff
path: root/static/templates.go
blob: 28a057afbc1636ac6e8ebbe1e65ddb1b4e08c04b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//go:build embed
// +build embed

package static

import "embed"

//go:embed *
var Templates embed.FS
var Enabled bool = true

var StaticPath string

func CopyTemplatesToMemory() {
	_ = StaticPath
}