This repository has been archived on 2020-09-24. You can view files and clone it, but cannot push or open issues or pull requests.
consumer-api/consumer_api/views/consumers_view.py
marcsello 9c046b63d9
All checks were successful
continuous-integration/drone/push Build is passing
Created app skeleton
2020-03-29 17:08:53 +02:00

8 lines
122 B
Python

from flask_classful import FlaskView
class ConsumersView(FlaskView):
def get(self):
return "ConsumersView"