mirror of
https://github.com/Blockstream/satellite-api.git
synced 2025-02-23 05:55:06 +01:00
10 lines
298 B
Python
10 lines
298 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'})
|