started the status queue development #4

Merged
dafo5502 merged 4 commits from developer into master 2021-10-27 10:00:53 +02:00
Showing only changes of commit 4223dce739 - Show all commits

View File

@ -118,6 +118,11 @@ def create_app():
running = True
return Response(response=json.dumps({'running': running}),
content_type='application/json')
@app.route('/status/queue', methods=['GET'])
def status_queueu():
return Response(response=json.dumps({'test': 'hello world'}),
content_type='application/json')
def _enqueue(package):
with open(os.path.join(queuedir, _get_uuid()), 'x') as f: