mirror of
https://github.com/fergalmoran/buttcord.git
synced 2026-01-03 15:24:44 +00:00
17 lines
231 B
Python
17 lines
231 B
Python
from flask import Flask, render_template
|
|
|
|
app = Flask(__name__)
|
|
|
|
|
|
@app.route('/')
|
|
def index():
|
|
return render_template('body.html')
|
|
|
|
|
|
@app.route('/test')
|
|
def test():
|
|
return render_template('test.html')
|
|
|
|
|
|
app.run(debug=True)
|