fix: make more fields optional

This commit is contained in:
Anna 2022-09-21 13:32:08 -04:00
parent cc9a4ed0cd
commit cf7209a215
Signed by: anna
GPG Key ID: 0B391D8F06FCD9E0
1 changed files with 2 additions and 2 deletions

View File

@ -11,8 +11,8 @@ pub struct ModPack {
pub name: String,
pub author: String,
pub version: String,
pub description: String,
pub url: String,
pub description: Option<String>,
pub url: Option<String>,
pub mod_pack_pages: Option<Vec<ModPackPage>>,
pub simple_mods_list: Option<Vec<SimpleMod>>,
}