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:
万物街
2025-09-23 00:27:02 +08:00
parent 37f84efbdf
commit 2fb35eda53
85 changed files with 4194 additions and 1934 deletions

View 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 {}