1
0
mirror of https://github.com/rclone/rclone.git synced 2025-12-06 00:03:32 +00:00

New backend for Citrix Sharefile - Fixes #1543

Many thanks to Bob Droog for organizing a test account and extensive
testing.
This commit is contained in:
Nick Craig-Wood
2019-08-27 22:50:07 +01:00
parent 1e7144eb63
commit 4627ac5709
18 changed files with 2537 additions and 1 deletions

View File

@@ -0,0 +1,22 @@
// +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)
}
}