2022-11-19 20:21:09 +00:00
|
|
|
mod api_types;
|
2023-03-28 02:11:22 +01:00
|
|
|
mod async_utils;
|
2022-08-10 01:56:22 +01:00
|
|
|
pub mod battery;
|
|
|
|
pub mod cpu;
|
2022-08-26 22:00:43 +01:00
|
|
|
pub mod general;
|
2022-08-10 01:56:22 +01:00
|
|
|
pub mod gpu;
|
2022-11-10 03:09:05 +00:00
|
|
|
pub mod handler;
|
2023-07-04 03:00:18 +01:00
|
|
|
pub mod message;
|
2022-08-10 01:56:22 +01:00
|
|
|
mod utility;
|
2024-01-06 18:26:35 +00:00
|
|
|
pub mod web;
|
2022-08-10 01:56:22 +01:00
|
|
|
|
|
|
|
pub(super) type ApiParameterType = Vec<usdpl_back::core::serdes::Primitive>;
|
2022-11-19 20:21:09 +00:00
|
|
|
|
|
|
|
pub use api_types::*;
|