fix: make more fields optional

This commit is contained in:
Anna 2022-09-21 13:32:08 -04:00
parent 1e2f42046d
commit f745ef8288
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>>,
}