add RegistryApi

This commit is contained in:
2024-12-20 00:56:52 +01:00
parent 0b776186ac
commit 5dc1e91ce2
2 changed files with 62 additions and 0 deletions

48
STRUCTURE.md Normal file
View File

@@ -0,0 +1,48 @@
# Hlæja structure
```mermaid
graph RL;
CP[Core Plugin]
subgraph SCP [Common Plugin]
PL[Plugin Library]
PLM[Plugin Library Manifest]
PLP[Plugin Library Publish]
PCo[Plugin Common]
PCoD[Plugin Common Detekt]
PCoK[Plugin Common Ktlint]
PS[Plugin Service]
PSC[Plugin Service Container]
PSIT[Plugin Service Integration Test]
PSPR[Plugin Service Process Resource]
PCe[Plugin Certificate]
end
PCo --> PL
PLM --> PL
PLP --> PL
CP --> PCo
PCoD --> PCo
PCoK --> PCo
PCo --> PS
PSC --> PS
PSIT --> PS
PSPR --> PS
CML[Common Messages Library]
PL --> CML
DRS[Device Registry Service]
CML --> DRS
PS --> DRS
PCe --> DRS
DDS[Device Data Service]
CML --> DDS
PS --> DDS
DCS[Device Configuration Service]
CML --> DCS
PS --> DCS
DAS[Device API Service]
CML --> DAS
PS --> DAS
PCe --> DAS
RAS[Registry API Service]
CML --> RAS
PS --> RAS
PCe --> RAS
```