summaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2023-04-17 15:05:20 +0200
committerEugen Wissner <belka@caraus.de>2023-04-17 15:05:20 +0200
commit79bdca04e2cc9e13bbfa1cac7619d5e4a56ff0bd (patch)
tree1d267c727247c1b20dc113737ce356f3b7fa09a0 /src/main.cpp
parent34b10f41aa285e423cccb161342b68ae7275da4b (diff)
downloadslackbuilder-79bdca04e2cc9e13bbfa1cac7619d5e4a56ff0bd.tar.gz
Remove SBo differ experiment
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/main.cpp b/src/main.cpp
deleted file mode 100644
index ef8dfcd..0000000
--- a/src/main.cpp
+++ /dev/null
@@ -1,22 +0,0 @@
-#include "command.h"
-
-int main(int argc, char **argv)
-{
- std::unique_ptr<katja::command> command;
-
- try
- {
- command = katja::parse_command_line(argc, argv);
- }
- catch (katja::command_exception& e)
- {
- std::cout << e.what() << std::endl << std::endl;
-
- katja::help().execute();
-
- return EXIT_FAILURE;
- }
- command->execute();
-
- return EXIT_SUCCESS;
-}