mirror of
https://github.com/emo2007/block-accounting.git
synced 2025-04-04 13:46:27 +00:00
10 lines
327 B
TypeScript
10 lines
327 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { ContractInteractService } from './contract-interact.service';
|
|
import { ContractInteractController } from './contract-interact.controller';
|
|
|
|
@Module({
|
|
controllers: [ContractInteractController],
|
|
providers: [ContractInteractService],
|
|
})
|
|
export class ContractInteractModule {}
|