From 700419bbcb67feba2f51590ff23293a994fa4738 Mon Sep 17 00:00:00 2001 From: Xevion Date: Wed, 29 Apr 2020 04:53:18 -0500 Subject: [PATCH] initial commit --- amend/cli.py | 4 ++++ amend/main.py | 5 +++++ 2 files changed, 9 insertions(+) create mode 100644 amend/cli.py create mode 100644 amend/main.py diff --git a/amend/cli.py b/amend/cli.py new file mode 100644 index 0000000..bc00979 --- /dev/null +++ b/amend/cli.py @@ -0,0 +1,4 @@ +""" +cli.py +Controls command-line operations and is the primary entry-point to the application. +""" \ No newline at end of file diff --git a/amend/main.py b/amend/main.py new file mode 100644 index 0000000..e655127 --- /dev/null +++ b/amend/main.py @@ -0,0 +1,5 @@ +""" +main.py +Main file that organizes most operations. +Despite the name, the application shouldn't be activated directly here. +""" \ No newline at end of file