|
@@ -0,0 +1,10 @@
|
|
|
+from flask import Flask,request
|
|
|
+import json
|
|
|
+
|
|
|
+app = Flask(__name__)
|
|
|
+
|
|
|
[email protected]("/contains_all_chars", methods=['POST'])
|
|
|
+def contains_all_chars():
|
|
|
+ # Just testing, essentially an echo server at this point
|
|
|
+ return json.dumps(request.get_json())
|
|
|
+
|