mirror of
https://github.com/Xevion/thedrank.com.git
synced 2025-12-13 18:13:20 -06:00
13 lines
274 B
Python
13 lines
274 B
Python
from app import app
|
|
from flask import render_template
|
|
import os
|
|
import sys
|
|
|
|
@app.route('/')
|
|
def index():
|
|
return render_template('index.html')
|
|
|
|
@app.route('/keybase.txt')
|
|
@app.route('/.well-known/keybase.txt')
|
|
def keybase():
|
|
return app.send_static_file('keybase.txt') |