[#1105] apemanager: Implement apemanager service

* Introduce grpc server for apemanager service and
  its implementation in `pkg/services/apemanager`.

Signed-off-by: Airat Arifullin <a.arifullin@yadro.com>
This commit is contained in:
Airat Arifullin 2024-04-24 20:23:15 +03:00 committed by Evgenii Stratonikov
parent 51ade979e8
commit 542d3adcb2
8 changed files with 434 additions and 0 deletions

View file

@ -114,6 +114,7 @@ func initApp(ctx context.Context, c *cfg) {
initAndLog(c, "notification", func(c *cfg) { initNotifications(ctx, c) })
initAndLog(c, "object", initObjectService)
initAndLog(c, "tree", initTreeService)
initAndLog(c, "apemanager", initAPEManagerService)
initAndLog(c, "control", initControlService)
initAndLog(c, "morph notifications", func(c *cfg) { listenMorphNotifications(ctx, c) })