summaryrefslogtreecommitdiff
path: root/src/bin/client.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/client.rs')
-rw-r--r--src/bin/client.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/bin/client.rs b/src/bin/client.rs
index 24a87b8..3353e87 100644
--- a/src/bin/client.rs
+++ b/src/bin/client.rs
@@ -17,6 +17,7 @@ use space::client::engines::client_engines;
use space::client::refinery::client_refinery;
use space::client::dashboard::client_dashboard;
use space::client::navigation::client_navigation;
+use space::client::construction::client_construction;
#[derive(Debug, Deserialize)]
struct Config {
@@ -81,5 +82,6 @@ fn main() {
ModuleType::Engines => client_engines(stream, buff_r),
ModuleType::Refinery => client_refinery(stream, buff_r),
ModuleType::Navigation => client_navigation(name, stream, buff_r),
+ ModuleType::Construction => client_construction(stream, buff_r),
}
}