thot_core/
identifier.rs

1/// Identifier information for Thot related to storing app data.
2pub struct Identifier;
3
4impl Identifier {
5    pub fn qualifier() -> String {
6        String::from("com")
7    }
8
9    pub fn organization() -> String {
10        String::from("Thot")
11    }
12
13    pub fn application() -> String {
14        String::from("Thot Core")
15    }
16}
17
18#[cfg(test)]
19#[path = "./identifier_test.rs"]
20mod identifier_test;