1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
use crate::util::config::Config;

pub struct Path{
    pub host: String,
}
impl Path {
    pub fn new() -> Self {
        Path {
            host: Config::host(),
        }
    }

    pub fn slash(&mut self, p: &String) -> &mut Self {
        self.host = self.host.to_owned() + "/" + p.as_str();

        self
    }

    pub fn ok(&self) -> String {
        self.host.to_owned()
    }
}