This commit is contained in:
3
consumer_api/views/__init__.py
Normal file
3
consumer_api/views/__init__.py
Normal file
@ -0,0 +1,3 @@
|
||||
from .consumers_view import ConsumersView
|
||||
from .log_view import LogView
|
||||
from .sync_view import SyncView
|
7
consumer_api/views/consumers_view.py
Normal file
7
consumer_api/views/consumers_view.py
Normal file
@ -0,0 +1,7 @@
|
||||
from flask_classful import FlaskView
|
||||
|
||||
|
||||
class ConsumersView(FlaskView):
|
||||
|
||||
def get(self):
|
||||
return "ConsumersView"
|
7
consumer_api/views/log_view.py
Normal file
7
consumer_api/views/log_view.py
Normal file
@ -0,0 +1,7 @@
|
||||
from flask_classful import FlaskView
|
||||
|
||||
|
||||
class LogView(FlaskView):
|
||||
|
||||
def get(self):
|
||||
return "LogView"
|
7
consumer_api/views/sync_view.py
Normal file
7
consumer_api/views/sync_view.py
Normal file
@ -0,0 +1,7 @@
|
||||
from flask_classful import FlaskView
|
||||
|
||||
|
||||
class SyncView(FlaskView):
|
||||
|
||||
def get(self):
|
||||
return "SyncView"
|
Reference in New Issue
Block a user