mirror of
https://git.macaw.me/skunky/SkunkyArt.git
synced 2025-04-01 20:17:35 +03:00
16 lines
199 B
Go
16 lines
199 B
Go
//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
|
|
}
|