Atualização repositorio
This commit is contained in:
17
src/crm/occurrences/occurrences.module.ts
Normal file
17
src/crm/occurrences/occurrences.module.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
/* eslint-disable prettier/prettier */
|
||||
/* eslint-disable @typescript-eslint/no-unused-vars */
|
||||
|
||||
/*
|
||||
https://docs.nestjs.com/modules
|
||||
*/
|
||||
|
||||
import { Module } from '@nestjs/common';
|
||||
import { OccurrencesService } from './occurrences.service';
|
||||
|
||||
@Module({
|
||||
imports: [],
|
||||
controllers: [],
|
||||
providers: [
|
||||
OccurrencesService,],
|
||||
})
|
||||
export class OccurrencesModule { }
|
||||
10
src/crm/occurrences/occurrences.service.ts
Normal file
10
src/crm/occurrences/occurrences.service.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
/* eslint-disable prettier/prettier */
|
||||
/* eslint-disable @typescript-eslint/no-unused-vars */
|
||||
/*
|
||||
https://docs.nestjs.com/providers#services
|
||||
*/
|
||||
|
||||
import { Injectable } from '@nestjs/common';
|
||||
|
||||
@Injectable()
|
||||
export class OccurrencesService { }
|
||||
10
src/crm/occurrences/ocorrences.controller.ts
Normal file
10
src/crm/occurrences/ocorrences.controller.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
/* eslint-disable prettier/prettier */
|
||||
/* eslint-disable @typescript-eslint/no-unused-vars */
|
||||
/*
|
||||
https://docs.nestjs.com/controllers#controllers
|
||||
*/
|
||||
|
||||
import { Controller } from '@nestjs/common';
|
||||
|
||||
@Controller()
|
||||
export class OcorrencesController { }
|
||||
Reference in New Issue
Block a user