This commit is contained in:
22
program_service/views/program_view.py
Normal file
22
program_service/views/program_view.py
Normal 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
|
||||
Reference in New Issue
Block a user