8 lines
122 B
Python
8 lines
122 B
Python
from flask_classful import FlaskView
|
|
|
|
|
|
class ConsumersView(FlaskView):
|
|
|
|
def get(self):
|
|
return "ConsumersView"
|