init nest (wip)

This commit is contained in:
Anthony Mineo 2020-08-22 10:19:50 -04:00
parent 1a211e261e
commit 3b5f41f933
26 changed files with 8251 additions and 0 deletions

View file

@ -0,0 +1,8 @@
import { Injectable } from '@nestjs/common';
@Injectable()
export class AppService {
getHello(): string {
return 'Hello World!';
}
}