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