mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2026-07-15 07:17:00 +10:00
refactor(v4.0.0-alpha): beginning of a new era
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
import { HttpModule } from "@nestjs/axios";
|
||||
import { Module } from "@nestjs/common";
|
||||
|
||||
import { StorageModule } from "../storage/storage.module";
|
||||
import { PrinterService } from "./printer.service";
|
||||
|
||||
@Module({
|
||||
imports: [HttpModule, StorageModule],
|
||||
providers: [PrinterService],
|
||||
exports: [PrinterService],
|
||||
})
|
||||
export class PrinterModule {}
|
||||
Reference in New Issue
Block a user