aboutsummaryrefslogtreecommitdiffstats
path: root/src/bin/tui.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2019-07-09 01:01:55 -0400
committerJesse Luehrs <doy@tozt.net>2019-07-09 01:07:29 -0400
commitb6709ebadff904ddefec07625d198c8fa33a4555 (patch)
tree834a3530810f78484b5efcaea07352f825bfe698 /src/bin/tui.rs
parent6983acfaff676d527b0239be8ed6306672968c2b (diff)
downloadnbsh-old-b6709ebadff904ddefec07625d198c8fa33a4555.tar.gz
nbsh-old-b6709ebadff904ddefec07625d198c8fa33a4555.zip
split into a repl and a tui
the repl uses readline and is line-based, the tui will eventually be a full alternate screen app
Diffstat (limited to 'src/bin/tui.rs')
-rw-r--r--src/bin/tui.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/bin/tui.rs b/src/bin/tui.rs
new file mode 100644
index 0000000..68be8a8
--- /dev/null
+++ b/src/bin/tui.rs
@@ -0,0 +1,5 @@
+extern crate nbsh;
+
+fn main() {
+ nbsh::tui::tui();
+}