Added python_algorithms and server.py to test RESTful services

This commit is contained in:
ROS Station
2019-11-27 16:09:54 +01:00
parent 580702a73f
commit 0a695f5b2c

View File

@@ -0,0 +1,5 @@
from flask import Flask
from flask_restful import Api, Resource, reqparse
app = Flask(__name__)
api = Api(app)