rainbow_core/schema/
methods.rs1use super::*;
2
3impl Default for Schema {
4 fn default() -> Self {
5 Self {
6 schema: "".to_string(),
7 theme: "".to_string(),
8 variant: "".to_string(),
9 custom: Default::default(),
10 language: Default::default(),
11 }
12 }
13}
14
15impl Schema {}