thewellermangroup
commited on
Commit
·
2dcf838
1
Parent(s):
8c46058
Update app.py
Browse files
app.py
CHANGED
@@ -63,9 +63,22 @@ def password(passwordIn):
|
|
63 |
|
64 |
return flask.jsonify(data)
|
65 |
|
66 |
-
@app.route('/ACCESS/
|
67 |
def ListenToWellerman():
|
68 |
return 'Access Denied'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
69 |
|
70 |
if __name__ == "__main__":
|
71 |
app.run(debug=True,host="0.0.0.0",port=5000)
|
|
|
63 |
|
64 |
return flask.jsonify(data)
|
65 |
|
66 |
+
@app.route('/ACCESS/Listen to Wellerman', methods=['GET'])
|
67 |
def ListenToWellerman():
|
68 |
return 'Access Denied'
|
69 |
+
@app.route('/ACCESS/A Lot of Games', methods=['GET'])
|
70 |
+
def ALotOfGames():
|
71 |
+
return 'Access Denied'
|
72 |
+
@app.route('/ACCESS/Make a Review', methods=['GET'])
|
73 |
+
def MakeAReview():
|
74 |
+
return 'Access Denied'
|
75 |
+
@app.route('/ACCESS/The Wellerman Group AI', methods=['GET'])
|
76 |
+
def TheWellermanGroupAI():
|
77 |
+
return 'Access Denied'
|
78 |
+
@app.route('/ACCESS/The Wellerman Group Chatbox', methods=['GET'])
|
79 |
+
def TheWellermanGroupChatbox():
|
80 |
+
return 'Access Denied'
|
81 |
+
|
82 |
|
83 |
if __name__ == "__main__":
|
84 |
app.run(debug=True,host="0.0.0.0",port=5000)
|