aboutsummaryrefslogtreecommitdiff
path: root/backend/handlers/login.go
diff options
context:
space:
mode:
authorArda Serdar Pektezol <1669855+pektezol@users.noreply.github.com>2024-09-10 22:13:24 +0300
committerArda Serdar Pektezol <1669855+pektezol@users.noreply.github.com>2024-09-10 22:13:24 +0300
commit16165aea34a711027825b3f6512e73a0156f8068 (patch)
tree138d92b8b01c41e07a3a2316fd109ddd97e80fa6 /backend/handlers/login.go
parentrefactor: update readme (diff)
downloadlphub-16165aea34a711027825b3f6512e73a0156f8068.tar.gz
lphub-16165aea34a711027825b3f6512e73a0156f8068.tar.bz2
lphub-16165aea34a711027825b3f6512e73a0156f8068.zip
refactor: move backend entry, rename module
Diffstat (limited to 'backend/handlers/login.go')
-rw-r--r--backend/handlers/login.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/backend/handlers/login.go b/backend/handlers/login.go
index 8794989..565ebdb 100644
--- a/backend/handlers/login.go
+++ b/backend/handlers/login.go
@@ -8,10 +8,11 @@ import (
8 "os" 8 "os"
9 "time" 9 "time"
10 10
11 "lphub/database"
12 "lphub/models"
13
11 "github.com/gin-gonic/gin" 14 "github.com/gin-gonic/gin"
12 "github.com/golang-jwt/jwt/v4" 15 "github.com/golang-jwt/jwt/v4"
13 "github.com/pektezol/leastportalshub/backend/database"
14 "github.com/pektezol/leastportalshub/backend/models"
15 "github.com/pektezol/steam_go" 16 "github.com/pektezol/steam_go"
16) 17)
17 18