Aucune description

yuanan d909592fe8 【框架搭建】增加类图 il y a 2 mois
src d909592fe8 【框架搭建】增加类图 il y a 2 mois
.gitignore 0438644aed 【框架搭建】初始化项目 il y a 2 mois
Cargo.lock 9b90453a90 【框架搭建】 il y a 2 mois
Cargo.toml 9b90453a90 【框架搭建】 il y a 2 mois
emu-config.yaml d909592fe8 【框架搭建】增加类图 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