Skip to content

Commit c79eaa0

Browse files
authored
Merge pull request #365 from Code-4-Community/cost-and-default-value-crud-endpoints
Cost and default value crud endpoints
2 parents dc71fd2 + 358abd2 commit c79eaa0

13 files changed

Lines changed: 1830 additions & 7 deletions

backend/src/app.module.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,10 @@ import { UserModule } from './user/user.module';
44
import { GrantModule } from './grant/grant.module';
55
import { NotificationsModule } from './notifications/notification.module';
66
import { CashflowModule } from './cashflow/cashflow.module';
7+
import { CostModule } from './cost/cashflow-cost.module';
8+
import { DefaultValuesModule } from './default-values/default-values.module';
79

810
@Module({
9-
imports: [AuthModule, UserModule, GrantModule, NotificationsModule,CashflowModule],
11+
imports: [AuthModule, UserModule, GrantModule, NotificationsModule, CashflowModule, CostModule, DefaultValuesModule],
1012
})
1113
export class AppModule {}

0 commit comments

Comments
 (0)