notion-async-api 0.1.1

A notion client api, in `async` style.
Documentation
pub use api::Api;
pub use block::{Block, BlockType};
pub use comment::Comment;
pub use database::Database;
pub use fetcher::{AnyObject, Fetcher};
pub use object::Object;
pub use page::Page;

// objects
mod block;
mod comment;
mod database;
mod page;
mod user;

mod api;
mod error;
mod fetcher;
mod misc;
mod object;
mod rich_text;

#[cfg(test)]
mod tests {}