Trần Viết Sơn
feat: save temper
8b7e5fc
raw
history blame
261 Bytes
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 {}