Initial Origin Support

This commit is contained in:
Philip
2021-10-01 22:26:29 +02:00
parent 272e198e85
commit d7deae57ad
8 changed files with 175 additions and 9 deletions
+8
View File
@@ -0,0 +1,8 @@
use serde::Deserialize;
#[derive(Debug, Deserialize,Clone)]
pub struct OriginSettings {
pub enabled: bool,
pub path: Option<String>,
}