From 425f33334238e4fadd21ee22b37872360e93c990 Mon Sep 17 00:00:00 2001 From: xdrm-brackets Date: Fri, 15 Jun 2018 15:29:56 +0200 Subject: [PATCH] update repo location --- README.md | 6 +++--- cmd/test/main.go | 2 +- root/i.go | 4 ++-- root/user/posti.go | 4 ++-- root/useri.go | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 06bfdda..2e4a3e1 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ All commands above must be launched from the root of this repository. In order for next steps to work properly whatever your configuration, you might execute the following command: ```bash -chmod +x $GOPATH/src/git.xdrm.io/xdrm-brackets/gfw/*.sh +chmod +x $GOPATH/src/git.xdrm.io/go/xb-api/*.sh ``` ### 2. Build type checkers @@ -14,7 +14,7 @@ chmod +x $GOPATH/src/git.xdrm.io/xdrm-brackets/gfw/*.sh Default types have to be built before using them. ```bash -$GOPATH/src/git.xdrm.io/xdrm-brackets/gfw/build-types.sh +$GOPATH/src/git.xdrm.io/go/xb-api/build-types.sh ``` If the build process succeeds, the `./types` folder must contain *.so* files. @@ -24,7 +24,7 @@ If the build process succeeds, the `./types` folder must contain *.so* files. Controllers are located under the `./root` file structure. ```bash -$GOPATH/src/git.xdrm.io/xdrm-brackets/gfw/build-controllers.sh ./root +$GOPATH/src/git.xdrm.io/go/xb-api/build-controllers.sh ./root ``` If the build process succeeds, the `./controllers` folder must contain *.so* files. diff --git a/cmd/test/main.go b/cmd/test/main.go index 7715ebb..c2cc9d5 100644 --- a/cmd/test/main.go +++ b/cmd/test/main.go @@ -1,7 +1,7 @@ package main import ( - "git.xdrm.io/xdrm-brackets/gfw" + "git.xdrm.io/go/xb-api" "log" ) diff --git a/root/i.go b/root/i.go index 6d36180..6f17c5d 100644 --- a/root/i.go +++ b/root/i.go @@ -2,8 +2,8 @@ package main import ( "fmt" - e "git.xdrm.io/xdrm-brackets/gfw/err" - i "git.xdrm.io/xdrm-brackets/gfw/implement" + e "git.xdrm.io/go/xb-api/err" + i "git.xdrm.io/go/xb-api/implement" ) func Get(d i.Arguments, r *i.Response) i.Response { diff --git a/root/user/posti.go b/root/user/posti.go index 99a6f46..be9de83 100644 --- a/root/user/posti.go +++ b/root/user/posti.go @@ -2,8 +2,8 @@ package main import ( "fmt" - e "git.xdrm.io/xdrm-brackets/gfw/err" - i "git.xdrm.io/xdrm-brackets/gfw/implement" + e "git.xdrm.io/go/xb-api/err" + i "git.xdrm.io/go/xb-api/implement" ) func Get(d i.Arguments, r *i.Response) i.Response { diff --git a/root/useri.go b/root/useri.go index e6ee9db..debb121 100644 --- a/root/useri.go +++ b/root/useri.go @@ -2,8 +2,8 @@ package main import ( "fmt" - e "git.xdrm.io/xdrm-brackets/gfw/err" - i "git.xdrm.io/xdrm-brackets/gfw/implement" + e "git.xdrm.io/go/xb-api/err" + i "git.xdrm.io/go/xb-api/implement" ) func Get(d i.Arguments, r *i.Response) i.Response {