Initial commit

This commit is contained in:
2021-12-10 21:59:56 +01:00
commit ccfce10ffa
18 changed files with 444 additions and 0 deletions

View File

@ -0,0 +1,2 @@
#!/usr/bin/env python3
from .report_view import ReportView

View File

@ -0,0 +1,7 @@
#!/usr/bin/env python3
from flask import jsonify, request, abort, current_app, Response
from flask_classful import FlaskView
class ReportView(FlaskView):
pass