This commit is contained in:
randogoth 2023-05-21 23:11:59 +03:00
parent 12e3fe43d2
commit 0bf0b17243

View file

@ -1,6 +1,7 @@
import json
import os
from flask import Flask, request
from waitress import serve
from functools import reduce
app = Flask(__name__)
@ -36,4 +37,4 @@ def track():
else:
return 'hash missing'
app.run(port=8001)
serve(app, host='127.0.0.1', port=8001)