blob: 5e8cc5d666f94b81677dfa1690d2b1061f69fdb6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
use std::path::Path;
pub fn ssh_user() -> &'static str {
return "git";
}
pub fn binary_path() -> &'static str {
return "/opt/fagit/fagit";
}
pub fn repo_store() -> &'static Path {
return Path::new("/opt/fagit/store/");
}
|