|
преди 1 месец | |
---|---|---|
config | преди 1 месец | |
src | преди 1 месец | |
.gitignore | преди 2 месеца | |
Cargo.lock | преди 1 месец | |
Cargo.toml | преди 1 месец | |
emu-config.yaml | преди 1 месец | |
readme.md | преди 2 месеца |
classDiagram
class Service {
+run() Result~JoinHandle~
}
<<interface>> Service
class Pcs {
+new() Pcs
+run() Result~JoinHandle~
}
class Bms {
+new() Bms
+run() Result~JoinHandle~
}
Pcs ..|> Service
Bms ..|> Service
class Ems {
+devices: Vec~Service~
+start_services() Result
}
Ems *-- Service