Fix: Typo, missing 'a' in Package.created_at

This commit is contained in:
2025-09-12 12:59:56 -05:00
parent 94ec8cfd71
commit c6dd63143e

View File

@@ -8,7 +8,7 @@ use crate::structs::release::Author;
/// https://github.com/go-gitea/gitea/blob/main/modules/structs/package.go
#[derive(Debug, Deserialize, Serialize)]
pub struct Package {
crated_at: String, // TODO: Datetime struct
created_at: String, // TODO: Datetime struct
creator: Author,
html_url: String,
id: u64,