special branch without tests stuffs

This commit is contained in:
simplonco
2023-01-01 14:53:26 +01:00
parent 432a7dfdd5
commit 104fa23746
149 changed files with 0 additions and 49264 deletions

View File

@@ -1,12 +0,0 @@
import { Module } from '@nestjs/common';
import { AppController } from './app.controller';
import { AppService } from './app.service';
import { CoffeesController } from './coffees/coffees.controller';
import { CoffeesService } from './coffees/coffees.service';
@Module({
imports: [],
controllers: [AppController, CoffeesController],
providers: [AppService, CoffeesService],
})
export class AppModule {}