Fixed website not being nullable, added static version of urls

This commit is contained in:
Aaron Power
2017-04-23 00:30:56 +01:00
parent d36c861c19
commit 1fb3d16843
3 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -43,5 +43,5 @@ pub struct Tag {
#[derive(Debug, Clone, Deserialize)]
pub struct Application {
pub name: String,
pub website: String,
pub website: Option<String>,
}