diff options
| author | Eskil Queseth <eskilq@kth.se> | 2021-03-26 01:23:57 +0100 |
|---|---|---|
| committer | Eskil Queseth <eskilq@kth.se> | 2021-03-26 01:23:57 +0100 |
| commit | b0034ec3e344030274c98cf81f75789d80ce6211 (patch) | |
| tree | 3d6b91d21f81135bd301ea0a7c37aa5950f676dc /mumlib/src/lib.rs | |
| parent | 0f677fff3f48d4d17ece37060323ce19a41d87ad (diff) | |
| download | mum-b0034ec3e344030274c98cf81f75789d80ce6211.tar.gz | |
use constant string for socket path
Diffstat (limited to 'mumlib/src/lib.rs')
| -rw-r--r-- | mumlib/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mumlib/src/lib.rs b/mumlib/src/lib.rs index 439efa9..bccf073 100644 --- a/mumlib/src/lib.rs +++ b/mumlib/src/lib.rs @@ -6,7 +6,7 @@ pub mod state; use colored::*; use log::*; -pub const SOCKET_PATH: &str = "/var/tmp/mumd"; +pub const SOCKET_PATH: &str = "/tmp/mumd"; pub const DEFAULT_PORT: u16 = 64738; pub fn setup_logger<T: Into<fern::Output>>(target: T, color: bool) { |
