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

Git Webhooks is running!

' + '

Have a look at our documentation for more informations.

' ); } }