aboutsummaryrefslogtreecommitdiff
path: root/frontend/cmd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/cmd.cpp')
-rw-r--r--frontend/cmd.cpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/frontend/cmd.cpp b/frontend/cmd.cpp
deleted file mode 100644
index c5b03ea..0000000
--- a/frontend/cmd.cpp
+++ /dev/null
@@ -1,17 +0,0 @@
-#include <functional>
-#include <unordered_map>
-
-#include "cmd.h"
-
-using namespace std;
-
-static const unordered_map<string, function<void(const vector<string> &)>> handlers = {
- {"gert", [] (const vector<string> & argv) { } },
-};
-
-void cmd_handle(const vector<string> & argv) {
- string cmd = argv.front();
- vector<string> args = argv;
-
-}
-