first comit

This commit is contained in:
Johan
2025-12-16 14:18:21 +01:00
commit 8c90d5ad59
152 changed files with 1109 additions and 0 deletions

11
src/app/views.py Normal file
View File

@@ -0,0 +1,11 @@
import logging
from pathlib import Path
from flask import Blueprint, render_template, current_app
# Import de notre fonction utilitaire
from .utils import build_image_structure
# Création d'un Blueprint (collection de routes) nommé 'gallery'
app = Blueprint('gallery', __name__)
# TODO : votre code ici (cf énoncé)