Skip to content
Snippets Groups Projects
app.service.ts 142 B
Newer Older
axel huillard's avatar
axel huillard committed
import { Injectable } from '@nestjs/common';

@Injectable()
export class AppService {
  getHello(): string {
    return 'Hello World!';
  }
}