chore (backend-rs): remove unneeded 'static
This commit is contained in:
parent
b185c0c87e
commit
722d090f8d
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ pub enum Error {
|
||||||
JsonErr(#[from] serde_json::Error),
|
JsonErr(#[from] serde_json::Error),
|
||||||
}
|
}
|
||||||
|
|
||||||
const UPSTREAM_PACKAGE_JSON_URL: &'static str =
|
const UPSTREAM_PACKAGE_JSON_URL: &str =
|
||||||
"https://firefish.dev/firefish/firefish/-/raw/main/package.json";
|
"https://firefish.dev/firefish/firefish/-/raw/main/package.json";
|
||||||
|
|
||||||
async fn get_latest_version() -> Result<String, Error> {
|
async fn get_latest_version() -> Result<String, Error> {
|
||||||
|
|
Loading…
Reference in a new issue