Created app skeleton
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-03-29 17:08:53 +02:00
parent f192459855
commit 9c046b63d9
9 changed files with 67 additions and 22 deletions

View File

@ -0,0 +1,3 @@
from .consumers_view import ConsumersView
from .log_view import LogView
from .sync_view import SyncView

View File

@ -0,0 +1,7 @@
from flask_classful import FlaskView
class ConsumersView(FlaskView):
def get(self):
return "ConsumersView"

View File

@ -0,0 +1,7 @@
from flask_classful import FlaskView
class LogView(FlaskView):
def get(self):
return "LogView"

View File

@ -0,0 +1,7 @@
from flask_classful import FlaskView
class SyncView(FlaskView):
def get(self):
return "SyncView"