file_tools.rs 220 B

123456789
  1. pub mod file_tools {
  2. use crate::files::file_struct::Site;
  3. pub fn get_base_path () -> Site {
  4. Site {
  5. domain: String::from("domain"),
  6. nation: String::from("nation")
  7. }
  8. }
  9. }