Added files to test module

This commit is contained in:
Antonio de la Rosa 2025-10-14 14:16:56 +02:00
commit 6a89fece7c
3 changed files with 120 additions and 0 deletions

7
__init__.py Normal file
View file

@ -0,0 +1,7 @@
from flask import Blueprint
mtest_app=Blueprint('mtest_app', __name__)
@mtest_app.route('/mtest')
def mtest_home():
return {'hello': 'world'}