This commit is contained in:
26
src/resources.py
Normal file
26
src/resources.py
Normal file
@ -0,0 +1,26 @@
|
||||
#!/usr/bin/env python3
|
||||
import logging
|
||||
import os
|
||||
from flask import request
|
||||
from flask_restful import Resource
|
||||
from schemas import *
|
||||
|
||||
"""
|
||||
Flask Restful endpoints
|
||||
"""
|
||||
|
||||
__author__ = '@tormakris'
|
||||
__copyright__ = "Copyright 2019, KSZK"
|
||||
__module_name__ = "endpoints"
|
||||
__version__text__ = "1"
|
||||
|
||||
LOGGER = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class SampleResource(Resource):
|
||||
"""
|
||||
Sample endpoint
|
||||
See: https://swagger.kmlabz.com/?urls.primaryName=Input%20Service
|
||||
"""
|
||||
def post(self):
|
||||
pass
|
Reference in New Issue
Block a user