In my case I was using NestJS with proctoc / proto-ts, and had forgotten to add the controller decorator that was generated from my proto file to the controller.
@Controller()
@HeroesServiceControllerMethods() <--- here
export class AppController implements HeroesServiceController {