Added embed message for blank url

This commit is contained in:
Robin Universe 2021-07-05 22:30:16 -05:00
parent 0950a0af09
commit 52df884b0f
1 changed files with 4 additions and 0 deletions

View File

@ -11,6 +11,10 @@ f = open('links.json',)
link_cache = json.load(f)
f.close()
@app.route('/')
def default():
return render_template('default.html', message="TwitFix is an attempt to fix twitter video embeds in discord click this link to be directed to my github page for the project!")
@app.route('/<path:subpath>')
def twitfix(subpath):