1
1
mirror of https://github.com/go-gitea/gitea synced 2024-06-29 22:55:55 +00:00
gitea/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)
}
}