Spaces:
Sleeping
Sleeping
File size: 289 Bytes
8b7e5fc f97bd0c 8b7e5fc |
1 2 3 4 5 6 7 8 9 10 11 |
import { Module } from '@nestjs/common';
import { BranchService } from './branch.service.js';
import { BranchController } from './branch.controller.js';
@Module({
controllers: [BranchController],
providers: [BranchService],
exports: [BranchService],
})
export class BranchModule {}
|