Fix clippy: Remove unnecessary lifetime specifier

Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
Matthias Beyer 2022-12-27 15:55:59 +01:00
parent 1d86f122d3
commit f280c4b8fa
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ use crate::{
Result,
};
const DEFAULT_REDIRECT_URI: &'static str = "urn:ietf:wg:oauth:2.0:oob";
const DEFAULT_REDIRECT_URI: &str = "urn:ietf:wg:oauth:2.0:oob";
/// Handles registering your mastodon app to your instance. It is recommended
/// you cache your data struct to avoid registering on every run.