Updated module path to change to gitea

This commit is contained in:
2022-01-22 15:43:33 +01:00
parent 0cdb52754f
commit 795222f342
7 changed files with 11 additions and 11 deletions

View File

@@ -5,9 +5,9 @@ import (
"strings"
"time"
"gitea.larvit.se/pwrpln/auth-api/src/db"
jwt "github.com/dgrijalva/jwt-go"
"github.com/gofiber/fiber/v2"
"gitlab.larvit.se/power-plan/auth-api/src/db"
)
func (h Handlers) returnTokens(account db.Account, c *fiber.Ctx) error {

View File

@@ -3,10 +3,10 @@ package handlers
import (
"strings"
"gitea.larvit.se/pwrpln/auth-api/src/db"
"gitea.larvit.se/pwrpln/auth-api/src/utils"
"github.com/gofiber/fiber/v2"
"github.com/google/uuid"
"gitlab.larvit.se/power-plan/auth-api/src/db"
"gitlab.larvit.se/power-plan/auth-api/src/utils"
)
type AccountInput struct {

View File

@@ -1,9 +1,9 @@
package handlers
import (
"gitea.larvit.se/pwrpln/auth-api/src/db"
"github.com/gofiber/fiber/v2"
"github.com/google/uuid"
"gitlab.larvit.se/power-plan/auth-api/src/db"
)
// AccountUpdateFields godoc

View File

@@ -1,8 +1,8 @@
package handlers
import (
"gitea.larvit.se/pwrpln/auth-api/src/db"
jwt "github.com/dgrijalva/jwt-go"
"gitlab.larvit.se/power-plan/auth-api/src/db"
"go.uber.org/zap"
)