summaryrefslogtreecommitdiffstats
path: root/src/mastodon_client.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/mastodon_client.rs')
-rw-r--r--src/mastodon_client.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mastodon_client.rs b/src/mastodon_client.rs
index f517608..8fad5ca 100644
--- a/src/mastodon_client.rs
+++ b/src/mastodon_client.rs
@@ -104,11 +104,11 @@ pub trait MastodonClient {
unimplemented!("This method was not implemented");
}
/// GET /api/v1/search
- fn search<'a>(&self, q: &'a str, resolve: bool) -> Result<SearchResult> {
+ fn search(&self, q: &str, resolve: bool) -> Result<SearchResult> {
unimplemented!("This method was not implemented");
}
/// GET /api/v2/search
- fn search_v2<'a>(&self, q: &'a str, resolve: bool) -> Result<SearchResultV2> {
+ fn search_v2(&self, q: &str, resolve: bool) -> Result<SearchResultV2> {
unimplemented!("This method was not implemented");
}
/// POST /api/v1/follows