Make License::url optional

This commit is contained in:
marceline-cramer 2021-12-11 00:30:29 -07:00
parent 21ed7f1f45
commit a989c243d3
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ pub struct ModInfo {
pub struct License {
pub id: String,
pub name: String,
pub url: String,
pub url: Option<String>,
}
#[derive(Deserialize, Debug)]