fixed things

Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
This commit is contained in:
2017-08-23 01:47:34 -04:00
parent 4c729b598b
commit 65acc52076
2 changed files with 2 additions and 6 deletions
+1 -1
View File
@@ -1 +1 @@
web: python server.py
web: gunicorn server:app
+1 -5
View File
@@ -1,5 +1,4 @@
from flask import Flask, jsonify
from flask_common import Common
import requests
@@ -94,7 +93,4 @@ def get_exchange(coin1, coin2):
'ticker': c.ticker,
'value': c.value(coin2),
'value.coin': coin2
})
if __name__ == "__main__":
common.serve()
})