mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
d51e19dbac
This commit introduces the `revng.daemon` Python module, a Flask-powered web application that exposes the functionality from `revng.api` across a GraphQL API
13 lines
257 B
Python
13 lines
257 B
Python
#
|
|
# This file is distributed under the MIT License. See LICENSE.md for details.
|
|
#
|
|
|
|
from flask import Blueprint, render_template
|
|
|
|
demo_blueprint = Blueprint("demo", __name__)
|
|
|
|
|
|
@demo_blueprint.route("/")
|
|
def index():
|
|
return render_template("index.html")
|