blockstream-satellite-api/server/queues.py
Blockstream Satellite 9d421771e7 Port the satellite API to python
- Preserve the SQLite database and use SQLAlchemy to wrap db
  interactions.
- Use Alembic for database migrations.
- Organize all the python modules on the new server/ directory.
- Use pytest for unit tests and organize test modules at server/tests/.
2021-07-20 12:28:08 -03:00

9 lines
297 B
Python

from flask_restful import Resource
from flask import render_template, make_response
import constants
class QueueResource(Resource):
def get(self):
return make_response(render_template('queue.html', env=constants.env),
200, {'Content-Type': 'text/html'})