Added skeleton
Some checks failed
continuous-integration/drone/push Build was killed

This commit is contained in:
2021-04-14 19:22:22 +02:00
commit 7a3cb2afd8
12 changed files with 164 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
#!/usr/bin/env python3
from flask import request, jsonify, current_app, abort, Response
from flask_classful import FlaskView, route
class ProgramView(FlaskView):
def index(self):
pass
def get(self, _id: str):
pass
def post(self):
pass
@route('<_id>/details')
def get_details(self, _id: str):
pass
def delete(self, _id: str):
pass