diff options
author | tom barrett <spalf0@gmail.com> | 2018-06-27 07:51:47 -0500 |
---|---|---|
committer | tom barrett <spalf0@gmail.com> | 2018-06-27 07:51:47 -0500 |
commit | ae79327d4f0ee6de0ef6b8e3c51299aebfe3bc25 (patch) | |
tree | db6d4b049d94e41989178566a3dca52ab24b5b1e /src/bin | |
parent | 25d556ad995a83c0c783f0bf9ca555b17cb0bfb0 (diff) |
-added elementry construction module, doesnt do anything other than exist as a mass
Diffstat (limited to 'src/bin')
-rw-r--r-- | src/bin/client.rs | 2 |
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), } } |