project layout done
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-03-25 01:19:22 +01:00
parent 265d43f79b
commit 03bf58bab3
8 changed files with 177 additions and 13 deletions

26
src/resources.py Normal file
View 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