From 42eea1f371e15705233fa1db1481adb842d8a452 Mon Sep 17 00:00:00 2001 From: Vxrtrauter Date: Mon, 30 Jun 2025 16:21:49 +0200 Subject: [PATCH] Adds basic CLI input and output functionality Introduces a simple command-line interface to capture user input and display it back. Lays groundwork for future command processing and interaction. --- core/clinterface.py | 2 ++ core/commands/uztracker.py | 0 2 files changed, 2 insertions(+) create mode 100644 core/clinterface.py create mode 100644 core/commands/uztracker.py diff --git a/core/clinterface.py b/core/clinterface.py new file mode 100644 index 0000000..02d9d34 --- /dev/null +++ b/core/clinterface.py @@ -0,0 +1,2 @@ +commandinput = input("Enter Command: ") +print(commandinput) \ No newline at end of file diff --git a/core/commands/uztracker.py b/core/commands/uztracker.py new file mode 100644 index 0000000..e69de29