chore: align common layer to PHP; add addon/member account; fix addon schema; clean old tools; wire modules; build passes
This commit is contained in:
21
wwjcloud/src/common/agreement/agreement.module.ts
Normal file
21
wwjcloud/src/common/agreement/agreement.module.ts
Normal file
@@ -0,0 +1,21 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { TypeOrmModule } from '@nestjs/typeorm';
|
||||
import { Agreement } from './entity/agreement.entity';
|
||||
import { AgreementService } from './services/agreement.service';
|
||||
import { AgreementController } from './controllers/api/agreement.controller';
|
||||
|
||||
@Module({
|
||||
imports: [
|
||||
TypeOrmModule.forFeature([Agreement]),
|
||||
],
|
||||
controllers: [
|
||||
AgreementController,
|
||||
],
|
||||
providers: [
|
||||
AgreementService,
|
||||
],
|
||||
exports: [
|
||||
AgreementService,
|
||||
],
|
||||
})
|
||||
export class AgreementModule {}
|
||||
Reference in New Issue
Block a user