Skip to content

Commit

Permalink
Change to new fli path.
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Fang committed Nov 3, 2016
1 parent 2a0cd35 commit a6598f7
Show file tree
Hide file tree
Showing 70 changed files with 786 additions and 439 deletions.
2 changes: 1 addition & 1 deletion client/cli/cmds_gen.go
Expand Up @@ -15,7 +15,7 @@
*/

/*
* CODE GENERATED AUTOMATICALLY WITH github.com/ClusterHQ/go/client/cmd/cmdgen
* CODE GENERATED AUTOMATICALLY WITH github.com/ClusterHQ/fli/client/cmd/cmdgen
* THIS FILE SHOULD NOT BE EDITED BY HAND
*/

Expand Down
56 changes: 28 additions & 28 deletions client/cli/handler.go
Expand Up @@ -27,34 +27,34 @@ import (
"strings"
"time"

"github.com/ClusterHQ/go/dl/datalayer"
dlbin "github.com/ClusterHQ/go/dl/encdec/binary"

"github.com/ClusterHQ/go/dp/dataplane"
"github.com/ClusterHQ/go/dp/metastore"
"github.com/ClusterHQ/go/dp/sync"

"github.com/ClusterHQ/go/mdsimpls/restfulstorage"
"github.com/ClusterHQ/go/mdsimpls/sqlite3storage"

"github.com/ClusterHQ/go/meta/blob"
"github.com/ClusterHQ/go/meta/branch"
"github.com/ClusterHQ/go/meta/snapshot"
"github.com/ClusterHQ/go/meta/volume"
"github.com/ClusterHQ/go/meta/volumeset"

"github.com/ClusterHQ/go/protocols"

"github.com/ClusterHQ/go/securefilepath"

"github.com/ClusterHQ/go/dl/blobdiffer"
"github.com/ClusterHQ/go/dl/encdec"
"github.com/ClusterHQ/go/dl/executor"
"github.com/ClusterHQ/go/dl/filediffer/variableblk"
dlhash "github.com/ClusterHQ/go/dl/hash"
"github.com/ClusterHQ/go/dl/hash/adler32"
"github.com/ClusterHQ/go/dl/zfs"
"github.com/ClusterHQ/go/vh/cauthn"
"github.com/ClusterHQ/fli/dl/datalayer"
dlbin "github.com/ClusterHQ/fli/dl/encdec/binary"

"github.com/ClusterHQ/fli/dp/dataplane"
"github.com/ClusterHQ/fli/dp/metastore"
"github.com/ClusterHQ/fli/dp/sync"

"github.com/ClusterHQ/fli/mdsimpls/restfulstorage"
"github.com/ClusterHQ/fli/mdsimpls/sqlite3storage"

"github.com/ClusterHQ/fli/meta/blob"
"github.com/ClusterHQ/fli/meta/branch"
"github.com/ClusterHQ/fli/meta/snapshot"
"github.com/ClusterHQ/fli/meta/volume"
"github.com/ClusterHQ/fli/meta/volumeset"

"github.com/ClusterHQ/fli/protocols"

"github.com/ClusterHQ/fli/securefilepath"

"github.com/ClusterHQ/fli/dl/blobdiffer"
"github.com/ClusterHQ/fli/dl/encdec"
"github.com/ClusterHQ/fli/dl/executor"
"github.com/ClusterHQ/fli/dl/filediffer/variableblk"
dlhash "github.com/ClusterHQ/fli/dl/hash"
"github.com/ClusterHQ/fli/dl/hash/adler32"
"github.com/ClusterHQ/fli/dl/zfs"
"github.com/ClusterHQ/fli/vh/cauthn"
)

//go:generate go run ../cmd/cligen/main.go -yaml cmd.yml -output cmds_gen.go -package cli
Expand Down
2 changes: 1 addition & 1 deletion client/cli/searcher.go
Expand Up @@ -20,7 +20,7 @@ import (
"regexp"
"strings"

"github.com/ClusterHQ/go/meta/volumeset"
"github.com/ClusterHQ/fli/meta/volumeset"
)

func isID(s string) (bool, error) {
Expand Down
6 changes: 3 additions & 3 deletions client/cli/utils.go
Expand Up @@ -26,9 +26,9 @@ import (
"strconv"
"time"

"github.com/ClusterHQ/go/meta/attrs"
"github.com/ClusterHQ/go/meta/snapshot"
"github.com/ClusterHQ/go/meta/volumeset"
"github.com/ClusterHQ/fli/meta/attrs"
"github.com/ClusterHQ/fli/meta/snapshot"
"github.com/ClusterHQ/fli/meta/volumeset"
)

// getHomeDir gets the full path of the current user's home dir, if unable to fetch the user home dir path then
Expand Down
2 changes: 1 addition & 1 deletion client/cligen/cligen.go
Expand Up @@ -89,7 +89,7 @@ const (
*/
/*
* CODE GENERATED AUTOMATICALLY WITH github.com/ClusterHQ/go/client/cmd/cmdgen
* CODE GENERATED AUTOMATICALLY WITH github.com/ClusterHQ/fli/client/cmd/cmdgen
* THIS FILE SHOULD NOT BE EDITED BY HAND
*/
Expand Down
2 changes: 1 addition & 1 deletion client/cmd/cligen/main.go
Expand Up @@ -22,7 +22,7 @@ import (
"log"
"os"

"github.com/ClusterHQ/go/client/cligen"
"github.com/ClusterHQ/fli/client/cligen"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion client/cmd/dpcli/main.go
Expand Up @@ -21,7 +21,7 @@ import (
"os"
"path"

"github.com/ClusterHQ/go/client/cli"
"github.com/ClusterHQ/fli/client/cli"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion client/cmd/fli/main.go
Expand Up @@ -16,7 +16,7 @@

package main

import "github.com/ClusterHQ/go/client/fli"
import "github.com/ClusterHQ/fli/client/fli"

func main() {
fli.Execute()
Expand Down
2 changes: 1 addition & 1 deletion client/cmd/fligen/main.go
Expand Up @@ -22,7 +22,7 @@ import (
"log"
"os"

"github.com/ClusterHQ/go/client/fligen"
"github.com/ClusterHQ/fli/client/fligen"
)

var (
Expand Down

0 comments on commit a6598f7

Please sign in to comment.