Тайлбар байхгүй

yuanan 2f0687c2c3 【框架搭建】整合RabbitMQ 1 сар өмнө
src 2f0687c2c3 【框架搭建】整合RabbitMQ 1 сар өмнө
.gitignore 6a442cecf8 【框架搭建】update 2 сар өмнө
Cargo.lock 2f0687c2c3 【框架搭建】整合RabbitMQ 1 сар өмнө
Cargo.toml 2f0687c2c3 【框架搭建】整合RabbitMQ 1 сар өмнө
emu-config.yaml 2f0687c2c3 【框架搭建】整合RabbitMQ 1 сар өмнө
readme.md d909592fe8 【框架搭建】增加类图 2 сар өмнө

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