Платформа ЦРНП "Мирокод" для разработки проектов
https://git.mirocod.ru
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.
23 lines
385 B
23 lines
385 B
// +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) |
|
} |
|
}
|
|
|