mirror of
https://github.com/go-gitea/gitea.git
synced 2024-10-31 08:37:35 -04:00
83b90e4199
* use vfsgen instead of go-bindata * fix templates * fix fmt * vendor vsfgen
24 lines
381 B
Go
24 lines
381 B
Go
// +build ignore
|
|
|
|
package main
|
|
|
|
import (
|
|
"log"
|
|
"net/http"
|
|
|
|
"github.com/shurcooL/vfsgen"
|
|
)
|
|
|
|
func main() {
|
|
var fsTemplates http.FileSystem = http.Dir("../../options")
|
|
err := vfsgen.Generate(fsTemplates, vfsgen.Options{
|
|
PackageName: "options",
|
|
BuildTags: "bindata",
|
|
VariableName: "Assets",
|
|
Filename: "bindata.go",
|
|
})
|
|
if err != nil {
|
|
log.Fatal("%v", err)
|
|
}
|
|
}
|