mirror of
https://github.com/fergalmoran/buttcord.git
synced 2025-12-22 09:27:34 +00:00
16 lines
231 B
Python
16 lines
231 B
Python
from flask import Flask, render_template
|
|
|
|
app = Flask(__name__)
|
|
|
|
|
|
@app.route('/')
|
|
def index():
|
|
return render_template('index.html')
|
|
|
|
|
|
@app.route('/test')
|
|
def test():
|
|
return render_template('test.html')
|
|
|
|
app.run(debug=True)
|