feat(CC-066): add ActionPlansModule

This commit is contained in:
admin-valentin 2026-08-02 12:09:05 +00:00
parent 9a67e49605
commit a8d8e4fc32

View file

@ -0,0 +1,5 @@
import { Module } from '@nestjs/common';
import { ActionPlansController } from './action-plans.controller';
@Module({ controllers: [ActionPlansController] })
export class ActionPlansModule {}