diff options
author | GeckoEidechse <gecko.eidechse+git@pm.me> | 2023-03-02 23:58:08 +0100 |
---|---|---|
committer | GeckoEidechse <gecko.eidechse+git@pm.me> | 2023-03-02 23:58:08 +0100 |
commit | c800dd31355064be8d3de8a74326b1c2b974c78e (patch) | |
tree | c22d9c1a83fafe009f16483bc88a96bbdd49dba0 /src-tauri/src/github/release_notes.rs | |
parent | c60b7b606dd0b4bc7108f9a768a4545f0781730c (diff) | |
parent | 441b81ef0f46062713f618a57e0d297c8a7a70d3 (diff) | |
download | FlightCore-c800dd31355064be8d3de8a74326b1c2b974c78e.tar.gz FlightCore-c800dd31355064be8d3de8a74326b1c2b974c78e.zip |
Merge branch 'main' into feat/basic-log-parsingfeat/basic-log-parsing
Diffstat (limited to 'src-tauri/src/github/release_notes.rs')
-rw-r--r-- | src-tauri/src/github/release_notes.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src-tauri/src/github/release_notes.rs b/src-tauri/src/github/release_notes.rs index 6dee4576..b59358ec 100644 --- a/src-tauri/src/github/release_notes.rs +++ b/src-tauri/src/github/release_notes.rs @@ -19,7 +19,7 @@ pub struct FlightCoreVersion { } // Fetches repo release API and returns response as string -async fn fetch_github_releases_api(url: &str) -> Result<String, String> { +pub async fn fetch_github_releases_api(url: &str) -> Result<String, String> { println!("Fetching releases notes from GitHub API"); let client = reqwest::Client::new(); |