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