Files
memegoat/backend/src/sessions/sessions.module.ts
Mathis HERRIOT 4ca15b578d
Some checks failed
Backend Tests / test (push) Has been cancelled
Lint / lint (push) Has been cancelled
refactor(modules): mark DatabaseModule and CryptoModule as global and remove redundant imports
Optimize module imports by marking `DatabaseModule` and `CryptoModule` as global. Remove explicit imports from other modules to reduce duplication and improve maintainability. Update environment variable limits for image and GIF sizes in production.
2026-01-14 22:50:30 +01:00

10 lines
313 B
TypeScript

import { Module } from "@nestjs/common";
import { SessionsRepository } from "./repositories/sessions.repository";
import { SessionsService } from "./sessions.service";
@Module({
providers: [SessionsService, SessionsRepository],
exports: [SessionsService, SessionsRepository],
})
export class SessionsModule {}