refactoring project

This commit is contained in:
2025-05-14 15:30:27 -04:00
parent bd7bf7bf82
commit f78f5ce9f9
7 changed files with 391 additions and 186 deletions

8
src/routes/api.py Normal file
View File

@@ -0,0 +1,8 @@
# API routes blueprint scaffold
from flask import Blueprint, jsonify
api_bp = Blueprint('api', __name__, url_prefix='/api')
@api_bp.route('/')
def api_index():
return jsonify({'message': 'API Home'})