mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-23 01:55:10 +00:00
10 lines
233 B
Python
10 lines
233 B
Python
from flask import render_template
|
|
from flask_run import app
|
|
|
|
# Our route for displaying the bootstrap template
|
|
@app.route("/")
|
|
def index():
|
|
return '<h1> Hello? </h1>'
|
|
# return render_template("student.html"), 200
|
|
|
|
|