diff --git a/src/runtime/h3/routes/ask-email-verification.post.ts b/src/runtime/h3/routes/ask-email-verification.post.ts index ad66dcd..31a159a 100644 --- a/src/runtime/h3/routes/ask-email-verification.post.ts +++ b/src/runtime/h3/routes/ask-email-verification.post.ts @@ -1,5 +1,5 @@ -import { SlipAuthError } from "../core/errors/SlipAuthError"; -import { useSlipAuth } from "../server/utils/useSlipAuth"; +import { SlipAuthError } from "../../core/errors/SlipAuthError"; +import { useSlipAuth } from "../../server/utils/useSlipAuth"; import { defineEventHandler, createError } from "h3"; export default defineEventHandler(async (event) => { diff --git a/src/runtime/h3/routes/ask-password-reset.post.ts b/src/runtime/h3/routes/ask-password-reset.post.ts index e67e785..391521b 100644 --- a/src/runtime/h3/routes/ask-password-reset.post.ts +++ b/src/runtime/h3/routes/ask-password-reset.post.ts @@ -1,4 +1,4 @@ -import { useSlipAuth } from "../server/utils/useSlipAuth"; +import { useSlipAuth } from "../../server/utils/useSlipAuth"; import { defineEventHandler, createError } from "h3"; export default defineEventHandler(async (event) => { diff --git a/src/runtime/h3/routes/login.post.ts b/src/runtime/h3/routes/login.post.ts index cff87c1..66791b1 100644 --- a/src/runtime/h3/routes/login.post.ts +++ b/src/runtime/h3/routes/login.post.ts @@ -1,5 +1,5 @@ -import { SlipAuthError } from "../core/errors/SlipAuthError"; -import { useSlipAuth } from "../server/utils/useSlipAuth"; +import { SlipAuthError } from "../../core/errors/SlipAuthError"; +import { useSlipAuth } from "../../server/utils/useSlipAuth"; import { defineEventHandler, readBody, getHeader } from "h3"; export default defineEventHandler(async (event) => { diff --git a/src/runtime/h3/routes/register.post.ts b/src/runtime/h3/routes/register.post.ts index 21fdb03..ba35c24 100644 --- a/src/runtime/h3/routes/register.post.ts +++ b/src/runtime/h3/routes/register.post.ts @@ -1,5 +1,5 @@ -import { SlipAuthError } from "../core/errors/SlipAuthError"; -import { useSlipAuth } from "../server/utils/useSlipAuth"; +import { SlipAuthError } from "../../core/errors/SlipAuthError"; +import { useSlipAuth } from "../../server/utils/useSlipAuth"; import { defineEventHandler, readBody, getHeader } from "h3"; export default defineEventHandler(async (event) => { diff --git a/src/runtime/h3/routes/verify-email-verification.post.ts b/src/runtime/h3/routes/verify-email-verification.post.ts index 2cc10eb..44a5953 100644 --- a/src/runtime/h3/routes/verify-email-verification.post.ts +++ b/src/runtime/h3/routes/verify-email-verification.post.ts @@ -1,5 +1,5 @@ -import { SlipAuthError } from "../core/errors/SlipAuthError"; -import { useSlipAuth } from "../server/utils/useSlipAuth"; +import { SlipAuthError } from "../../core/errors/SlipAuthError"; +import { useSlipAuth } from "../../server/utils/useSlipAuth"; import { defineEventHandler, readBody, createError } from "h3"; export default defineEventHandler(async (event) => {