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