1//! SMS Server and Client shared types.
23#![deny(missing_docs)]
4#![deny(unsafe_code)]
5#![warn(clippy::all, clippy::pedantic)]
67pub mod events;
8pub mod modem;
9pub mod sms;
1011#[cfg(feature = "http")]
12pub mod http;
1314#[cfg(feature = "gnss")]
15pub mod gnss;