snowstorm/lib.rs
1//! # SNOWSTORM SDK
2//!
3//! This is the main Snowstorm SDK.
4//! - It speaks to adapters to handle all cross platform networking stacks.
5//! - It is independent of tauri (though is accessed from the Snowstorm tauri app)
6//! - It is also meant to be able to run independently as a CLI command.
7//!
8//! ## Folder Structure
9//! - The main SDK lives under `/src/lib/sdk/*`.
10//! - The tauri code lives under `/src/tauri/*`.
11//!
12//! Author: @keroserene
13//!
14//! Copyright: ©Snowstorm 2024+
15
16pub mod config;
17pub mod control;
18pub mod identity;
19pub mod net;
20pub mod socks;
21pub mod geoip;
22pub mod client;