|
пре 3 недеља | |
---|---|---|
config | пре 1 месец | |
src | пре 3 недеља | |
.gitignore | пре 2 месеци | |
Cargo.lock | пре 3 недеља | |
Cargo.toml | пре 3 недеља | |
emu-config.yaml | пре 3 недеља | |
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