mirror of
https://github.com/Xevion/the-office.git
synced 2025-12-10 12:08:52 -06:00
6 lines
140 B
Python
6 lines
140 B
Python
from app import app
|
|
from flask import send_from_directory, redirect, url_for, render_template
|
|
|
|
@app.route('/')
|
|
def index():
|
|
return 'WIP' |