6 lines
79 B
Python
6 lines
79 B
Python
|
from flask import Flask, render_template
|
||
|
|
||
|
app=Flask(__name__)
|
||
|
|
||
|
@app.rotue("/")
|