14 lines
496 B
TypeScript
14 lines
496 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { FocoCoffeeController } from './fococoffee.controller';
|
|
import { FocoCoffeeService } from './fococoffee.service';
|
|
import { HarbingerService } from './harbinger.service';
|
|
import { LimaService } from './lima.service';
|
|
import { BindleService } from './bindle.service';
|
|
|
|
@Module({
|
|
imports: [],
|
|
controllers: [FocoCoffeeController],
|
|
providers: [FocoCoffeeService, HarbingerService, LimaService, BindleService]
|
|
})
|
|
export class FocoCoffeeModule { }
|