deta_rust 0.3.1

The unofficial Deta SDK for Rust lang
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! The [Deta-Rust](https://github.com/JakubesP/deta-rust) is a simple unofficial [Deta](https://www.deta.sh/) SDK for Rust lang.
//! 
//! You can see [examples](https://github.com/JakubesP/deta-rust/tree/main/examples) to get you started more quickly.
//!
//! Have fun 😀

mod constants;
pub mod database;
mod deta_client;
pub mod drive;
pub mod error;
mod utils;
pub use deta_client::DetaClient;

// Re-exports
pub use serde;
pub use serde_json;