mirror of
https://github.com/emo2007/block-accounting.git
synced 2025-04-03 21:26:27 +00:00
12 lines
299 B
TypeScript
12 lines
299 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { EthereumController } from './ethereum.controller';
|
|
import { EthereumService } from './ethereum.service';
|
|
|
|
@Module({
|
|
imports: [],
|
|
controllers: [EthereumController],
|
|
providers: [EthereumService],
|
|
exports: [],
|
|
})
|
|
export class EthereumModule {}
|