1
Fork 0
mirror of https://codeberg.org/forgejo/forgejo.git synced 2024-10-03 22:03:15 +00:00
forgejo/modules/templates/main.go

24 lines
385 B
Go
Raw Normal View History

// +build ignore
package main
import (
"log"
"net/http"
"github.com/shurcooL/vfsgen"
)
func main() {
var fsTemplates http.FileSystem = http.Dir("../../templates")
err := vfsgen.Generate(fsTemplates, vfsgen.Options{
PackageName: "templates",
BuildTags: "bindata",
VariableName: "Assets",
Filename: "bindata.go",
})
if err != nil {
log.Fatal("%v", err)
}
}