mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 13:20:31 +00:00
refactor: subscriptions to nestjs
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { DashboardService } from './Dashboard.service';
|
||||
import { FeaturesModule } from '../Features/Features.module';
|
||||
import { DashboardController } from './Dashboard.controller';
|
||||
|
||||
@Module({
|
||||
imports: [FeaturesModule],
|
||||
providers: [DashboardService],
|
||||
controllers: [DashboardController],
|
||||
})
|
||||
export class DashboardModule {}
|
||||
Reference in New Issue
Block a user