mirror of
https://github.com/Xevion/thedrank.com.git
synced 2025-12-14 10:13:24 -06:00
8 lines
145 B
Python
8 lines
145 B
Python
from app import app
|
|
from flask import render_template
|
|
import os
|
|
import sys
|
|
|
|
@app.route('/')
|
|
def index():
|
|
return render_template('index.html') |