From a4f639242f9f6221a486e0e91adeb75ba6096f45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ale=C5=A1=20Smodi=C5=A1?= Date: Mon, 24 Aug 2015 19:09:41 +0200 Subject: Split the development into daemon and wsgi_server. Implemented basic infrastructure for daemon (Prolog), and partial support for services in wsgi_server. --- daemon.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 daemon.py (limited to 'daemon.py') diff --git a/daemon.py b/daemon.py new file mode 100644 index 0000000..0809004 --- /dev/null +++ b/daemon.py @@ -0,0 +1,6 @@ +#!/usr/bin/python3 +# coding=utf-8 + +if __name__ == '__main__': + import server + server.start() -- cgit v1.2.1