You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
373 B
24 lines
373 B
6 years ago
|
// +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)
|
||
|
}
|
||
|
}
|