mirror of
https://github.com/go-shiori/shiori.git
synced 2024-11-13 04:35:28 +08:00
23 lines
331 B
Go
23 lines
331 B
Go
// +build ignore
|
|
|
|
package main
|
|
|
|
import (
|
|
"log"
|
|
"net/http"
|
|
|
|
"github.com/shurcooL/vfsgen"
|
|
)
|
|
|
|
func main() {
|
|
err := vfsgen.Generate(http.Dir("view"), vfsgen.Options{
|
|
Filename: "cmd/serve/assets-prod.go",
|
|
PackageName: "serve",
|
|
BuildTags: "!dev",
|
|
VariableName: "assets",
|
|
})
|
|
|
|
if err != nil {
|
|
log.Fatalln(err)
|
|
}
|
|
}
|