X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=o2ims%2Fservice%2Fhandlers.py;h=830e1ff1402e4a4a98ab3ecd23303fb067639760;hb=19ee63847f8eb032009e63634b90eb594f3c0408;hp=505549ce47548f6ed6c58b7cfed4abc6f2840b8f;hpb=62f8863960ebd439c714b0ceed204731d9b31266;p=pti%2Fo2.git diff --git a/o2ims/service/handlers.py b/o2ims/service/handlers.py index 505549c..830e1ff 100644 --- a/o2ims/service/handlers.py +++ b/o2ims/service/handlers.py @@ -16,6 +16,7 @@ from __future__ import annotations # from dataclasses import asdict from typing import List, Dict, Callable, Type +from o2ims.service.auditor import dms_handler # TYPE_CHECKING from o2ims.domain import commands, events from o2ims.service.auditor import ocloud_handler @@ -34,4 +35,5 @@ EVENT_HANDLERS = { COMMAND_HANDLERS = { commands.UpdateOCloud: ocloud_handler.update_ocloud, + commands.UpdateDms: dms_handler.update_dms } # type: Dict[Type[commands.Command], Callable]