Add test package for socketio form submission

This commit is contained in:
Patrick Jentsch
2020-01-22 16:14:00 +01:00
parent d6fdf69e81
commit 6bafa68804
6 changed files with 140 additions and 0 deletions

View File

@ -48,4 +48,7 @@ def create_app(config_name):
from .services import services as services_blueprint
app.register_blueprint(services_blueprint, url_prefix='/services')
from .test import test as test_blueprint
app.register_blueprint(test_blueprint, url_prefix='/test')
return app