Refactor code structure for improved readability and maintainability

This commit is contained in:
2025-04-28 00:52:40 +02:00
parent b6e0080caa
commit 93026436a9
48 changed files with 2116 additions and 126 deletions

View File

@@ -0,0 +1,29 @@
@startuml
node "Client Browser" {
[HTML/CSS/JS]
[JQuery]
[Chart.js]
}
node "Backend API" {
[RESTful Services]
[Image Processing]
[Video Generation]
}
database "Filesystem Storage" {
[Images]
[Videos]
}
node "Camera Controller" {
[Capture Configuration]
[Sensors (temp/humid)]
}
[HTML/CSS/JS] -- [RESTful Services] : HTTP
[RESTful Services] -- [Filesystem Storage]
[RESTful Services] -- [Camera Controller]
@enduml