Fixed subsides #14

Merged
sageTheDm merged 3 commits from React-Group/ai-virtual-assistant:main into main 2024-09-16 16:21:18 +02:00
Showing only changes of commit e0cd65ae65 - Show all commits

View file

@ -31,5 +31,15 @@ def index():
return render_template('index.html', messages=messages)
@APP.route('/faq')
def faq():
return render_template('faq.html')
@APP.route('/contact')
def contact():
return render_template('faq.html')
if __name__ == '__main__':
APP.run(debug=True)
APP.run(debug=True)