Trần Viết Sơn
add branch and branch menu
f97bd0c
raw
history blame contribute delete
289 Bytes
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 {}