mirror of
https://github.com/docmost/docmost.git
synced 2026-07-13 09:14:46 +10:00
c18c9ae02b
* replace TypeORM with Kysely query builder * refactor migrations * other changes and fixes
12 lines
348 B
TypeScript
12 lines
348 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { UserService } from './user.service';
|
|
import { UserController } from './user.controller';
|
|
import { UserRepo } from '@docmost/db/repos/user/user.repo';
|
|
|
|
@Module({
|
|
controllers: [UserController],
|
|
providers: [UserService, UserRepo],
|
|
exports: [UserService, UserRepo],
|
|
})
|
|
export class UserModule {}
|