diff --git a/client_tui.py b/client_tui.py new file mode 100755 index 0000000..85b7370 --- /dev/null +++ b/client_tui.py @@ -0,0 +1,5 @@ +#!/usr/bin/python3 + +""" +Placeholder for the client program with a TUI as interface +""" diff --git a/requirements.txt b/requirements.txt index 373fc4b..2364034 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,4 @@ +bottle==0.12.19 colorama==0.4.4 commonmark==0.9.1 Pygments==2.9.0 diff --git a/server.py b/server.py new file mode 100755 index 0000000..aaed091 --- /dev/null +++ b/server.py @@ -0,0 +1,5 @@ +#!/usr/bin/python3 + +""" +Placeholder for the server program +"""