diff options
author | Akkerman <akkerman@insula.org.ua> | 2023-09-04 21:29:01 +0300 |
---|---|---|
committer | Akkerman <akkerman@insula.org.ua> | 2023-09-04 21:29:01 +0300 |
commit | 49ea348bf8cd13a93f722e4b20e282f2fe392541 (patch) | |
tree | d91b326ddadd96d2e1faf0cd90c314db626dcb30 | |
parent | 03721a8b60e1bf7f463f92cccbd27e156ed40960 (diff) |
Drop extra method
-rw-r--r-- | src/mastodon.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mastodon.rs b/src/mastodon.rs index 085376e..fb67241 100644 --- a/src/mastodon.rs +++ b/src/mastodon.rs @@ -46,7 +46,7 @@ impl From<Data> for Mastodon { } } impl Mastodon { - methods![get and get_with_call_id, post and post_with_call_id, put and put_with_call_id, delete and delete_with_call_id,]; + methods![get and get_with_call_id, post and post_with_call_id, delete and delete_with_call_id,]; paged_routes! { (get) favourites: "favourites" => Status, |