mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 17:14:44 +01:00
23 lines
336 B
Go
23 lines
336 B
Go
//go:build ignore
|
|
|
|
package main
|
|
|
|
import (
|
|
"log"
|
|
"net/http"
|
|
|
|
"github.com/shurcooL/vfsgen"
|
|
)
|
|
|
|
func main() {
|
|
var AssetDir http.FileSystem = http.Dir("./tzdata")
|
|
err := vfsgen.Generate(AssetDir, vfsgen.Options{
|
|
PackageName: "sharefile",
|
|
BuildTags: "!dev",
|
|
VariableName: "tzdata",
|
|
})
|
|
if err != nil {
|
|
log.Fatalln(err)
|
|
}
|
|
}
|