aboutsummaryrefslogtreecommitdiffstats
path: root/modules/public/main.go
diff options
context:
space:
mode:
authorLunny Xiao <xiaolunwen@gmail.com>2019-06-03 05:43:47 +0800
committerLauris BH <lauris@nix.lv>2019-06-03 00:43:47 +0300
commit83b90e41999d30e4abb46f6bf0f1c3359cfd4d04 (patch)
tree4a15e9a42a850534a00346116da84153600a3027 /modules/public/main.go
parent8eba27c79257c6bc68cefbdffbb36d3596e6d3ee (diff)
downloadgitea-83b90e41999d30e4abb46f6bf0f1c3359cfd4d04.tar.gz
gitea-83b90e41999d30e4abb46f6bf0f1c3359cfd4d04.zip
Use vfsgen instead of go-bindata (#7080)
* use vfsgen instead of go-bindata * fix templates * fix fmt * vendor vsfgen
Diffstat (limited to 'modules/public/main.go')
-rw-r--r--modules/public/main.go23
1 files changed, 23 insertions, 0 deletions
diff --git a/modules/public/main.go b/modules/public/main.go
new file mode 100644
index 0000000000..707dbe2b22
--- /dev/null
+++ b/modules/public/main.go
@@ -0,0 +1,23 @@
+// +build ignore
+
+package main
+
+import (
+ "log"
+ "net/http"
+
+ "github.com/shurcooL/vfsgen"
+)
+
+func main() {
+ var fsPublic http.FileSystem = http.Dir("../../public")
+ err := vfsgen.Generate(fsPublic, vfsgen.Options{
+ PackageName: "public",
+ BuildTags: "bindata",
+ VariableName: "Assets",
+ Filename: "bindata.go",
+ })
+ if err != nil {
+ log.Fatal("%v", err)
+ }
+}