chiark / gitweb /
wip optiona nnd config parser
[hippotat.git] / src / bin / client.rs
index e00cb9c1bb43911992018d4ad5d149c3b2c06c1f..b8d2cf5a1edd586f017eb9679f04fa055466a9af 100644 (file)
@@ -2,4 +2,9 @@
 // SPDX-License-Identifier: AGPL-3.0-or-later
 // There is NO WARRANTY.
 
-fn main() { }
+use hippotat::prelude::*;
+
+fn main() {
+  let opts = config::Opts::from_args();
+  eprintln!("{:#?}", &opts);
+}