diff options
author | jloup <jloup@jloup.work> | 2018-05-14 20:56:25 +0200 |
---|---|---|
committer | jloup <jloup@jloup.work> | 2018-05-14 20:56:25 +0200 |
commit | 1d68446ae893f1d21f5392fecd8122bbc7a06b5d (patch) | |
tree | a7a84e5292e8cfa30d2fb2a451d979bf4a351689 | |
parent | 335b0c9bdc3e129f14bc40dd5f125b3526a83a40 (diff) | |
download | Front-1d68446ae893f1d21f5392fecd8122bbc7a06b5d.tar.gz Front-1d68446ae893f1d21f5392fecd8122bbc7a06b5d.tar.zst Front-1d68446ae893f1d21f5392fecd8122bbc7a06b5d.zip |
Better go import paths.v0.0.17
-rw-r--r-- | api/admin.go | 2 | ||||
-rw-r--r-- | api/auth_jwt.go | 2 | ||||
-rw-r--r-- | api/auth_otp.go | 2 | ||||
-rw-r--r-- | api/market_config.go | 4 | ||||
-rw-r--r-- | api/markets.go | 2 | ||||
-rw-r--r-- | api/password_reset.go | 2 | ||||
-rw-r--r-- | api/portfolio.go | 2 | ||||
-rw-r--r-- | api/user.go | 2 | ||||
-rw-r--r-- | cmd/app/main.go | 4 |
9 files changed, 11 insertions, 11 deletions
diff --git a/api/admin.go b/api/admin.go index 0ac6050..3b16d87 100644 --- a/api/admin.go +++ b/api/admin.go | |||
@@ -3,7 +3,7 @@ package api | |||
3 | import ( | 3 | import ( |
4 | "fmt" | 4 | "fmt" |
5 | 5 | ||
6 | "immae.eu/Immae/Projets/Cryptomonnaies/Cryptoportfolio/Front/db" | 6 | "git.immae.eu/Cryptoportfolio/Front.git/db" |
7 | ) | 7 | ) |
8 | 8 | ||
9 | type GetAllPortfoliosQuery struct { | 9 | type GetAllPortfoliosQuery struct { |
diff --git a/api/auth_jwt.go b/api/auth_jwt.go index db7e3f4..88ccda8 100644 --- a/api/auth_jwt.go +++ b/api/auth_jwt.go | |||
@@ -5,7 +5,7 @@ import ( | |||
5 | "strings" | 5 | "strings" |
6 | "time" | 6 | "time" |
7 | 7 | ||
8 | "immae.eu/Immae/Projets/Cryptomonnaies/Cryptoportfolio/Front/db" | 8 | "git.immae.eu/Cryptoportfolio/Front.git/db" |
9 | 9 | ||
10 | "github.com/dgrijalva/jwt-go" | 10 | "github.com/dgrijalva/jwt-go" |
11 | "github.com/gin-gonic/gin" | 11 | "github.com/gin-gonic/gin" |
diff --git a/api/auth_otp.go b/api/auth_otp.go index de1cf24..bbf1464 100644 --- a/api/auth_otp.go +++ b/api/auth_otp.go | |||
@@ -7,7 +7,7 @@ import ( | |||
7 | 7 | ||
8 | "github.com/gin-gonic/gin" | 8 | "github.com/gin-gonic/gin" |
9 | "github.com/pquerna/otp/totp" | 9 | "github.com/pquerna/otp/totp" |
10 | "immae.eu/Immae/Projets/Cryptomonnaies/Cryptoportfolio/Front/db" | 10 | "git.immae.eu/Cryptoportfolio/Front.git/db" |
11 | ) | 11 | ) |
12 | 12 | ||
13 | func GenerateSecret(user db.User) (bytes.Buffer, string, error) { | 13 | func GenerateSecret(user db.User) (bytes.Buffer, string, error) { |
diff --git a/api/market_config.go b/api/market_config.go index 09eb8a9..e02c3ba 100644 --- a/api/market_config.go +++ b/api/market_config.go | |||
@@ -6,8 +6,8 @@ import ( | |||
6 | "time" | 6 | "time" |
7 | 7 | ||
8 | "github.com/jloup/utils" | 8 | "github.com/jloup/utils" |
9 | "immae.eu/Immae/Projets/Cryptomonnaies/Cryptoportfolio/Front/db" | 9 | "git.immae.eu/Cryptoportfolio/Front.git/db" |
10 | "immae.eu/Immae/Projets/Cryptomonnaies/Cryptoportfolio/Front/markets" | 10 | "git.immae.eu/Cryptoportfolio/Front.git/markets" |
11 | ) | 11 | ) |
12 | 12 | ||
13 | type MarketConfigQuery struct { | 13 | type MarketConfigQuery struct { |
diff --git a/api/markets.go b/api/markets.go index 119c545..10493dd 100644 --- a/api/markets.go +++ b/api/markets.go | |||
@@ -1,7 +1,7 @@ | |||
1 | package api | 1 | package api |
2 | 2 | ||
3 | import ( | 3 | import ( |
4 | "immae.eu/Immae/Projets/Cryptomonnaies/Cryptoportfolio/Front/markets" | 4 | "git.immae.eu/Cryptoportfolio/Front.git/markets" |
5 | ) | 5 | ) |
6 | 6 | ||
7 | var Poloniex *markets.Poloniex | 7 | var Poloniex *markets.Poloniex |
diff --git a/api/password_reset.go b/api/password_reset.go index c7931d4..0c55c02 100644 --- a/api/password_reset.go +++ b/api/password_reset.go | |||
@@ -5,7 +5,7 @@ import ( | |||
5 | "time" | 5 | "time" |
6 | 6 | ||
7 | "github.com/dchest/passwordreset" | 7 | "github.com/dchest/passwordreset" |
8 | "immae.eu/Immae/Projets/Cryptomonnaies/Cryptoportfolio/Front/db" | 8 | "git.immae.eu/Cryptoportfolio/Front.git/db" |
9 | ) | 9 | ) |
10 | 10 | ||
11 | var PASSWORD_RESET_SECRET []byte | 11 | var PASSWORD_RESET_SECRET []byte |
diff --git a/api/portfolio.go b/api/portfolio.go index 0fef94c..1e16426 100644 --- a/api/portfolio.go +++ b/api/portfolio.go | |||
@@ -5,7 +5,7 @@ import ( | |||
5 | "time" | 5 | "time" |
6 | 6 | ||
7 | "github.com/shopspring/decimal" | 7 | "github.com/shopspring/decimal" |
8 | "immae.eu/Immae/Projets/Cryptomonnaies/Cryptoportfolio/Front/db" | 8 | "git.immae.eu/Cryptoportfolio/Front.git/db" |
9 | ) | 9 | ) |
10 | 10 | ||
11 | func init() { | 11 | func init() { |
diff --git a/api/user.go b/api/user.go index 8f1a465..b285a20 100644 --- a/api/user.go +++ b/api/user.go | |||
@@ -9,7 +9,7 @@ import ( | |||
9 | "github.com/dchest/passwordreset" | 9 | "github.com/dchest/passwordreset" |
10 | "github.com/gin-gonic/gin" | 10 | "github.com/gin-gonic/gin" |
11 | 11 | ||
12 | "immae.eu/Immae/Projets/Cryptomonnaies/Cryptoportfolio/Front/db" | 12 | "git.immae.eu/Cryptoportfolio/Front.git/db" |
13 | ) | 13 | ) |
14 | 14 | ||
15 | const ( | 15 | const ( |
diff --git a/cmd/app/main.go b/cmd/app/main.go index 4405bf1..3f071de 100644 --- a/cmd/app/main.go +++ b/cmd/app/main.go | |||
@@ -6,8 +6,8 @@ import ( | |||
6 | "strings" | 6 | "strings" |
7 | "time" | 7 | "time" |
8 | 8 | ||
9 | "immae.eu/Immae/Projets/Cryptomonnaies/Cryptoportfolio/Front/api" | 9 | "git.immae.eu/Cryptoportfolio/Front.git/api" |
10 | "immae.eu/Immae/Projets/Cryptomonnaies/Cryptoportfolio/Front/db" | 10 | "git.immae.eu/Cryptoportfolio/Front.git/db" |
11 | 11 | ||
12 | "github.com/gin-contrib/cors" | 12 | "github.com/gin-contrib/cors" |
13 | "github.com/gin-gonic/gin" | 13 | "github.com/gin-gonic/gin" |