aboutsummaryrefslogtreecommitdiffstats
path: root/modules/templates/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'modules/templates/main.go')
-rw-r--r--modules/templates/main.go23
1 files changed, 0 insertions, 23 deletions
diff --git a/modules/templates/main.go b/modules/templates/main.go
deleted file mode 100644
index 4460f58cbf..0000000000
--- a/modules/templates/main.go
+++ /dev/null
@@ -1,23 +0,0 @@
-// +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)
- }
-}