diff options
author | Joseph Ditton <jditton.atomic@gmail.com> | 2021-10-29 18:57:24 -0600 |
---|---|---|
committer | Joseph Ditton <jditton.atomic@gmail.com> | 2021-10-29 18:57:24 -0600 |
commit | 1997a981105c9910d2d0a150adb39a6bfe706e01 (patch) | |
tree | 8a92d9d944a9597f509cb3512c72a3285e073d35 /src/app.module.ts | |
download | locchat-1997a981105c9910d2d0a150adb39a6bfe706e01.tar.gz locchat-1997a981105c9910d2d0a150adb39a6bfe706e01.zip |
first commit
Diffstat (limited to 'src/app.module.ts')
-rw-r--r-- | src/app.module.ts | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/app.module.ts b/src/app.module.ts new file mode 100644 index 0000000..8662803 --- /dev/null +++ b/src/app.module.ts @@ -0,0 +1,10 @@ +import { Module } from '@nestjs/common'; +import { AppController } from './app.controller'; +import { AppService } from './app.service'; + +@Module({ + imports: [], + controllers: [AppController], + providers: [AppService], +}) +export class AppModule {} |