diff options
Diffstat (limited to '')
| -rw-r--r-- | backend/controllers/homeController.go | 4 | ||||
| -rw-r--r-- | backend/controllers/loginController.go | 4 | ||||
| -rw-r--r-- | backend/controllers/mapController.go | 4 | ||||
| -rw-r--r-- | backend/controllers/modController.go | 4 | ||||
| -rw-r--r-- | backend/controllers/recordController.go | 6 | ||||
| -rw-r--r-- | backend/controllers/userController.go | 4 |
6 files changed, 13 insertions, 13 deletions
diff --git a/backend/controllers/homeController.go b/backend/controllers/homeController.go index 2780e63..c94590a 100644 --- a/backend/controllers/homeController.go +++ b/backend/controllers/homeController.go | |||
| @@ -6,8 +6,8 @@ import ( | |||
| 6 | "strings" | 6 | "strings" |
| 7 | 7 | ||
| 8 | "github.com/gin-gonic/gin" | 8 | "github.com/gin-gonic/gin" |
| 9 | "github.com/pektezol/leastportals/backend/database" | 9 | "github.com/pektezol/leastportalshub/backend/database" |
| 10 | "github.com/pektezol/leastportals/backend/models" | 10 | "github.com/pektezol/leastportalshub/backend/models" |
| 11 | ) | 11 | ) |
| 12 | 12 | ||
| 13 | func Home(c *gin.Context) { | 13 | func Home(c *gin.Context) { |
diff --git a/backend/controllers/loginController.go b/backend/controllers/loginController.go index ae6e957..e907b22 100644 --- a/backend/controllers/loginController.go +++ b/backend/controllers/loginController.go | |||
| @@ -10,8 +10,8 @@ import ( | |||
| 10 | 10 | ||
| 11 | "github.com/gin-gonic/gin" | 11 | "github.com/gin-gonic/gin" |
| 12 | "github.com/golang-jwt/jwt/v4" | 12 | "github.com/golang-jwt/jwt/v4" |
| 13 | "github.com/pektezol/leastportals/backend/database" | 13 | "github.com/pektezol/leastportalshub/backend/database" |
| 14 | "github.com/pektezol/leastportals/backend/models" | 14 | "github.com/pektezol/leastportalshub/backend/models" |
| 15 | "github.com/solovev/steam_go" | 15 | "github.com/solovev/steam_go" |
| 16 | ) | 16 | ) |
| 17 | 17 | ||
diff --git a/backend/controllers/mapController.go b/backend/controllers/mapController.go index e7c5566..ebd65dd 100644 --- a/backend/controllers/mapController.go +++ b/backend/controllers/mapController.go | |||
| @@ -5,8 +5,8 @@ import ( | |||
| 5 | "strconv" | 5 | "strconv" |
| 6 | 6 | ||
| 7 | "github.com/gin-gonic/gin" | 7 | "github.com/gin-gonic/gin" |
| 8 | "github.com/pektezol/leastportals/backend/database" | 8 | "github.com/pektezol/leastportalshub/backend/database" |
| 9 | "github.com/pektezol/leastportals/backend/models" | 9 | "github.com/pektezol/leastportalshub/backend/models" |
| 10 | ) | 10 | ) |
| 11 | 11 | ||
| 12 | // GET Map Summary | 12 | // GET Map Summary |
diff --git a/backend/controllers/modController.go b/backend/controllers/modController.go index 07edff5..e2add1f 100644 --- a/backend/controllers/modController.go +++ b/backend/controllers/modController.go | |||
| @@ -5,8 +5,8 @@ import ( | |||
| 5 | "strconv" | 5 | "strconv" |
| 6 | 6 | ||
| 7 | "github.com/gin-gonic/gin" | 7 | "github.com/gin-gonic/gin" |
| 8 | "github.com/pektezol/leastportals/backend/database" | 8 | "github.com/pektezol/leastportalshub/backend/database" |
| 9 | "github.com/pektezol/leastportals/backend/models" | 9 | "github.com/pektezol/leastportalshub/backend/models" |
| 10 | ) | 10 | ) |
| 11 | 11 | ||
| 12 | // POST Map Summary | 12 | // POST Map Summary |
diff --git a/backend/controllers/recordController.go b/backend/controllers/recordController.go index d1404f4..951be41 100644 --- a/backend/controllers/recordController.go +++ b/backend/controllers/recordController.go | |||
| @@ -11,9 +11,9 @@ import ( | |||
| 11 | 11 | ||
| 12 | "github.com/gin-gonic/gin" | 12 | "github.com/gin-gonic/gin" |
| 13 | "github.com/google/uuid" | 13 | "github.com/google/uuid" |
| 14 | "github.com/pektezol/leastportals/backend/database" | 14 | "github.com/pektezol/leastportalshub/backend/database" |
| 15 | "github.com/pektezol/leastportals/backend/models" | 15 | "github.com/pektezol/leastportalshub/backend/models" |
| 16 | "github.com/pektezol/leastportals/backend/parser" | 16 | "github.com/pektezol/leastportalshub/backend/parser" |
| 17 | "golang.org/x/oauth2/google" | 17 | "golang.org/x/oauth2/google" |
| 18 | "golang.org/x/oauth2/jwt" | 18 | "golang.org/x/oauth2/jwt" |
| 19 | "google.golang.org/api/drive/v3" | 19 | "google.golang.org/api/drive/v3" |
diff --git a/backend/controllers/userController.go b/backend/controllers/userController.go index e73b1fe..6aa77fc 100644 --- a/backend/controllers/userController.go +++ b/backend/controllers/userController.go | |||
| @@ -7,8 +7,8 @@ import ( | |||
| 7 | "time" | 7 | "time" |
| 8 | 8 | ||
| 9 | "github.com/gin-gonic/gin" | 9 | "github.com/gin-gonic/gin" |
| 10 | "github.com/pektezol/leastportals/backend/database" | 10 | "github.com/pektezol/leastportalshub/backend/database" |
| 11 | "github.com/pektezol/leastportals/backend/models" | 11 | "github.com/pektezol/leastportalshub/backend/models" |
| 12 | ) | 12 | ) |
| 13 | 13 | ||
| 14 | // GET Profile | 14 | // GET Profile |