chore: migrate backend to monorepo apps and biome
This commit is contained in:
12
apps/bookings/src/bookings.controller.ts
Normal file
12
apps/bookings/src/bookings.controller.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
import { Controller, Get } from '@nestjs/common';
|
||||
import { BookingsService } from './bookings.service';
|
||||
|
||||
@Controller()
|
||||
export class BookingsController {
|
||||
constructor(private readonly bookingsService: BookingsService) {}
|
||||
|
||||
@Get()
|
||||
getHello(): string {
|
||||
return this.bookingsService.getHello();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user