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