diff options
author | 2021-08-27 20:30:50 -0700 | |
---|---|---|
committer | 2021-08-27 20:30:50 -0700 | |
commit | 9e9297e734973c981d654b3512ce89ed6f34484c (patch) | |
tree | 6bb553cfb80e6ccb875cd26eaa7a778ebae0f93f | |
parent | 9d5b84b88ddc2b7de1bc0f03d9026eb52e8976ac (diff) | |
download | notion-9e9297e734973c981d654b3512ce89ed6f34484c.tar.gz notion-9e9297e734973c981d654b3512ce89ed6f34484c.tar.zst notion-9e9297e734973c981d654b3512ce89ed6f34484c.zip |
Make NotionApi Clone-able
-rw-r--r-- | src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -36,6 +36,7 @@ pub trait AsIdentifier<ById> { /// An API client for Notion. /// Create a client by using [new(api_token: String)](Self::new()). +#[derive(Clone)] pub struct NotionApi { client: Client, } |