From 5139899eb320238defcd1e176f4a491e8415d86d Mon Sep 17 00:00:00 2001 From: Emanuele Date: Thu, 19 Mar 2020 10:33:49 +0100 Subject: [PATCH] Primo Commit --- .gitignore | 2 ++ comm/__init__.py | 0 comm/main.py | 5 +++++ driver/__init__.py | 0 driver/main.py | 8 ++++++++ 5 files changed, 15 insertions(+) create mode 100644 .gitignore create mode 100644 comm/__init__.py create mode 100644 comm/main.py create mode 100644 driver/__init__.py create mode 100644 driver/main.py diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a2bf2de --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/.project +/.pydevproject diff --git a/comm/__init__.py b/comm/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/comm/main.py b/comm/main.py new file mode 100644 index 0000000..6a30106 --- /dev/null +++ b/comm/main.py @@ -0,0 +1,5 @@ +''' +Created on 19 mar 2020 + +@author: Emanuele Trabattoni +''' diff --git a/driver/__init__.py b/driver/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/driver/main.py b/driver/main.py new file mode 100644 index 0000000..9ce4415 --- /dev/null +++ b/driver/main.py @@ -0,0 +1,8 @@ +''' +Created on 19 mar 2020 + +@author: Emanuele Trabattoni +''' + +if __name__ == '__main__': + pass \ No newline at end of file