Skip to main content

CommonLibrary/IPC/
mod.rs

1//! IPC: channel registry, Sky event table, provider trait, DTOs, effect
2//! constructors.
3
4pub mod Channel;
5
6pub mod SkyEvent;
7
8pub mod IPCProvider;
9
10pub mod DTO;
11
12pub mod SendNotificationToSideCar;
13
14pub mod SendRequestToSideCar;