2021-12-02 19:41:51 +01:00
|
|
|
from flask import render_template
|
2021-12-02 19:05:44 +01:00
|
|
|
import definitions as lib
|
|
|
|
|
2021-12-02 19:41:51 +01:00
|
|
|
# Fonctions qui seront associées à des URLs
|
|
|
|
|
2021-12-02 19:05:44 +01:00
|
|
|
def main():
|
2021-12-02 20:17:23 +01:00
|
|
|
return render_template("index.html")
|
2021-12-02 20:14:13 +01:00
|
|
|
|
|
|
|
def error():
|
|
|
|
return render_template("error.html")
|