13 lines
315 B
Python
Raw Normal View History

2025-07-28 13:27:52 +01:00
from . import auth_routes, create_routes, favourites_routes, gallery_routes, image_routes, index_routes, job_routes, settings_routes
2025-06-24 13:01:39 +01:00
__all__ = [
"auth_routes",
"create_routes",
2025-07-28 13:27:52 +01:00
"favourites_routes",
2025-06-24 13:01:39 +01:00
"gallery_routes",
"image_routes",
"index_routes",
"job_routes",
"settings_routes"
]