X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=o2ims%2Fservice%2Fhandlers.py;h=505549ce47548f6ed6c58b7cfed4abc6f2840b8f;hb=62f8863960ebd439c714b0ceed204731d9b31266;hp=c80ea6fd1cb47c0f79d9efaace318cdfeda928fd;hpb=81e3575a77366f30c2049f98c48a3087db0ea992;p=pti%2Fo2.git diff --git a/o2ims/service/handlers.py b/o2ims/service/handlers.py index c80ea6f..505549c 100644 --- a/o2ims/service/handlers.py +++ b/o2ims/service/handlers.py @@ -18,7 +18,7 @@ from __future__ import annotations from typing import List, Dict, Callable, Type # TYPE_CHECKING from o2ims.domain import commands, events -# ocloud +from o2ims.service.auditor import ocloud_handler # if TYPE_CHECKING: # from . import unit_of_work @@ -33,4 +33,5 @@ EVENT_HANDLERS = { COMMAND_HANDLERS = { + commands.UpdateOCloud: ocloud_handler.update_ocloud, } # type: Dict[Type[commands.Command], Callable]