s2rs/
lib.rs

1//! Access Scratch API with Rust
2pub use api::Api;
3pub use session::Session;
4// pub use entities::*; // TO BE ENABLED # DISABLE IS DEV ONLY
5pub use language::Language;
6pub use cursor::Cursor;
7pub use emoji::Emoji;
8
9pub mod api;
10pub mod session;
11pub mod entities;
12pub mod cursor;
13pub mod language;
14pub mod emoji;
15
16mod utils;
17mod cookies;
18mod headers;
19mod json;
20#[cfg(feature = "web_socket")] mod web_socket;
21#[cfg(feature = "html")] mod html;