import { Module } from '@nestjs/common';
import { SystemController } from './system.controller';
import { SystemService } from './system.service';
@Module({ controllers: [SystemController], providers: [SystemService] })
export class SystemModule {}
