Mark security cookie as optional

This commit is contained in:
Lucien Greathouse
2019-08-28 12:09:12 -07:00
parent 056fc5e087
commit ea112dd93d
2 changed files with 4 additions and 4 deletions

View File

@@ -11,7 +11,7 @@ pub enum UploadError {
#[derive(Debug)]
pub struct UploadOptions<'a> {
pub fuzzy_project_path: PathBuf,
pub security_cookie: String,
pub security_cookie: Option<String>,
pub asset_id: u64,
pub kind: Option<&'a str>,
}