Skip to content

Commit

Permalink
add hard coded contract service generator for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
richard483 committed Oct 30, 2023
1 parent 8dfadd6 commit ef81475
Show file tree
Hide file tree
Showing 8 changed files with 561 additions and 5 deletions.
206 changes: 203 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
"ajv": "^6.12.6",
"bcrypt": "^5.1.1",
"class-validator": "^0.14.0",
"jspdf": "^2.5.1",
"passport": "^0.6.0",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.1",
Expand Down
9 changes: 8 additions & 1 deletion src/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,16 @@ import { AuthModule } from './auth/auth.module';
import { UsersModule } from './users/users.module';
import { ConfigModule } from '@nestjs/config';
import { JobModule } from './job/job.module';
import { ContractModule } from './contract/contract.module';

@Module({
imports: [ConfigModule.forRoot(), AuthModule, UsersModule, JobModule],
imports: [
ConfigModule.forRoot(),
AuthModule,
UsersModule,
JobModule,
ContractModule,
],
controllers: [AppController],
providers: [AppService],
})
Expand Down
Loading

0 comments on commit ef81475

Please sign in to comment.