From c79519849a25ad05b18fb0a149ab95e3056bf993 Mon Sep 17 00:00:00 2001 From: Steven Polley Date: Fri, 9 Jun 2023 08:55:11 -0600 Subject: [PATCH] update comments --- main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index a86487d..eb8af3e 100644 --- a/main.go +++ b/main.go @@ -18,9 +18,9 @@ type LineageOSROM struct { Datetime int `json:"datetime"` // Unix timestamp - i.e. 1685907926 Filename string `json:"filename"` // .zip filename - i.e. lineage-20.0-20230604-UNOFFICIAL-sunfish.zip ID string `json:"id"` // A unique identifier such as a SHA256 hash of the .zip - i.e. 603bfc02e403e5fd1bf9ed74383f1d6c9ec7fb228d03c4b37753033d79488e93 - Romtype string `json:"romtype"` // i.e. nightly + Romtype string `json:"romtype"` // i.e. NIGHTLY or UNOFFICIAL Size int `json:"size"` // size of .zip file in bytes - URL string `json:"url"` // public URL where client could download the .zip file + URL string `json:"url"` // Accessible URL where client could download the .zip file Version string `json:"version"` // LineageOS version - i.e. 20.0 }