import { Controller, Get } from '@nestjs/common'; @Controller('seasons') export class SeasonsController { @Get() findAll(): string { return '' } }