chore: refactor auto update #8

Merged
reya merged 2 commits from refactor-updater into master 2026-02-19 08:24:35 +00:00
Showing only changes of commit f0e498d9e7 - Show all commits

View File

@@ -158,15 +158,15 @@ impl AutoUpdateStatus {
}
#[derive(Debug, Deserialize)]
struct GitHubRelease {
tag_name: String,
assets: Vec<GitHubAsset>,
pub struct GitHubRelease {
pub tag_name: String,
pub assets: Vec<GitHubAsset>,
}
#[derive(Debug, Deserialize)]
struct GitHubAsset {
name: String,
browser_download_url: String,
pub struct GitHubAsset {
pub name: String,
pub browser_download_url: String,
}
#[derive(Debug)]