fix: remove unused assignment and import warnings in tests
All checks were successful
CI / Check / Test (push) Successful in 2m51s
Architecture Docs / Generate diagrams (push) Successful in 3m36s

This commit is contained in:
2026-06-17 10:34:53 +02:00
parent f780a66c3a
commit c4fb1ed699
22 changed files with 1767 additions and 5 deletions

142
docs/arch/lucy/lucy.html Normal file

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,9 @@
graph TD
Aiss_worker[Aiss_worker]
class aiss_worker_module["Aiss_worker"] {
<<module>>
}
class commons_module["Commons"] {
<<module>>
}
aiss_worker_module --> commons_module : 1 dep

View File

@@ -0,0 +1,9 @@
graph TD
Api[Api]
class api_module["Api"] {
<<module>>
}
class commons_module["Commons"] {
<<module>>
}
api_module --> commons_module : 3 deps

View File

@@ -0,0 +1,2 @@
graph TD
Commons[Commons]

View File

@@ -0,0 +1,10 @@
graph TD
Aiss_worker[Aiss_worker]
Api[Api]
Worker[Worker]
Commons[Commons]
Worker -->|1 dep| Api
Aiss_worker -->|7 deps| Commons
Aiss_worker -->|1 dep| Api
Api -->|23 deps| Commons
Worker -->|12 deps| Commons

View File

@@ -0,0 +1,9 @@
graph TD
Worker[Worker]
class worker_module["Worker"] {
<<module>>
}
class commons_module["Commons"] {
<<module>>
}
worker_module --> commons_module : 2 deps

View File

@@ -0,0 +1,8 @@
graph TD
aiss_worker[aiss-worker]
commons[commons]
worker[worker]
api[api]
aiss_worker --> commons
worker --> commons
api --> commons