aboutsummaryrefslogtreecommitdiffstats
path: root/moon_authz/moon_authz/__main__.py
diff options
context:
space:
mode:
authorThomas Duval <thomas.duval@orange.com>2018-01-03 14:13:11 +0100
committerThomas Duval <thomas.duval@orange.com>2018-01-03 14:13:11 +0100
commitd023803536f069b4a69cfeeb744e56dfcd54103b (patch)
tree73747e82b064bfa49bbfa10d8db28264c15a8217 /moon_authz/moon_authz/__main__.py
parent52d037e757ac2189978e1129f469929fe73a9b7f (diff)
Clean the code and fix some bugs
Change-Id: I3516d001cb0792ca6b01a40b9d9d13efc3ba30f9
Diffstat (limited to 'moon_authz/moon_authz/__main__.py')
-rw-r--r--moon_authz/moon_authz/__main__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/moon_authz/moon_authz/__main__.py b/moon_authz/moon_authz/__main__.py
index 699c008c..2693f687 100644
--- a/moon_authz/moon_authz/__main__.py
+++ b/moon_authz/moon_authz/__main__.py
@@ -1,4 +1,4 @@
-from moon_authz.server import main
+from moon_authz.server import create_server
-server = main()
+server = create_server()
server.run()