notion-client 1.1.0

A Rust client library for the Notion API
Documentation
1
2
3
4
5
6
7
8
9
10
11
use reqwest::Client;

pub mod create;
pub mod query;
pub mod retrieve;
pub mod update;

#[derive(Debug, Clone)]
pub struct DataSourcesEndpoint {
    pub(super) client: Client,
}