From 320cb4dfe24b2070fe5d93168da88035e1b41a59 Mon Sep 17 00:00:00 2001 From: waldek Date: Sun, 23 May 2021 16:27:05 +0200 Subject: [PATCH] adds placeholders for the server and client --- client_tui.py | 5 +++++ requirements.txt | 1 + server.py | 5 +++++ 3 files changed, 11 insertions(+) create mode 100755 client_tui.py create mode 100755 server.py 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 +"""