1
0
mirror of https://github.com/nxshock/gallery.git synced 2024-11-28 00:21:01 +05:00
gallery/template.go

12 lines
171 B
Go
Raw Normal View History

2023-01-08 14:52:16 +05:00
package main
import (
_ "embed"
"html/template"
)
//go:embed index.html
var mainTemplateStr string
var t = template.Must(template.New("main").Parse(mainTemplateStr))