11 lines
216 B
Python
11 lines
216 B
Python
from flask import render_template
|
|
import definitions as lib
|
|
|
|
# Fonctions qui seront associées à des URLs
|
|
|
|
def main():
|
|
return render_template("index.html")
|
|
|
|
def error():
|
|
return render_template("error.html")
|