Aucune description

yuanan 0ad8c7bbe0 【框架搭建】update il y a 2 mois
src 0ad8c7bbe0 【框架搭建】update il y a 2 mois
.gitignore 6a442cecf8 【框架搭建】update il y a 2 mois
Cargo.lock 1dc9802016 【框架搭建】update il y a 2 mois
Cargo.toml 0ad8c7bbe0 【框架搭建】update il y a 2 mois
emu-config.yaml 6a442cecf8 【框架搭建】update il y a 2 mois
readme.md d909592fe8 【框架搭建】增加类图 il y a 2 mois

readme.md

系统类图

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