diff --git a/frontends/nextjs/src/lib/db/sessions/index.ts b/frontends/nextjs/src/lib/db/sessions/index.ts index b2703fbaa..fe26054ab 100644 --- a/frontends/nextjs/src/lib/db/sessions/index.ts +++ b/frontends/nextjs/src/lib/db/sessions/index.ts @@ -1,8 +1,8 @@ -export { createSession } from './create-session' -export { getSessionById } from './get-session-by-id' -export { getSessionByToken } from './get-session-by-token' -export { updateSession } from './update-session' -export { deleteSession } from './delete-session' -export { deleteSessionByToken } from './delete-session-by-token' -export { listSessions } from './list-sessions' +export { createSession } from './crud/create/create-session' +export { getSessionById } from './getters/get-session-by-id' +export { getSessionByToken } from './getters/get-session-by-token' +export { updateSession } from './crud/update-session' +export { deleteSession } from './crud/delete/delete-session' +export { deleteSessionByToken } from './crud/delete/delete-session-by-token' +export { listSessions } from './getters/list-sessions' export type { Session, CreateSessionInput, UpdateSessionInput, ListSessionsOptions } from './types'