feat(CC-067): add AssumptionsModule

This commit is contained in:
admin-valentin 2026-08-02 12:12:59 +00:00
parent f80f8e6c48
commit a171888ae3

View file

@ -0,0 +1,5 @@
import { Module } from '@nestjs/common';
import { AssumptionsController } from './assumptions.controller';
@Module({ controllers: [AssumptionsController] })
export class AssumptionsModule {}