thewellermangroup
commited on
Commit
·
e448c9d
1
Parent(s):
88310d6
Update app.py
Browse files
app.py
CHANGED
@@ -63,19 +63,19 @@ def password(passwordIn):
|
|
63 |
|
64 |
return flask.jsonify(data)
|
65 |
|
66 |
-
@app.route('/ACCESS/
|
67 |
def ListenToWellerman():
|
68 |
return 'Access Denied'
|
69 |
-
@app.route('/ACCESS/
|
70 |
def ALotOfGames():
|
71 |
return 'Access Denied'
|
72 |
-
@app.route('/ACCESS/
|
73 |
def MakeAReview():
|
74 |
return 'Access Denied'
|
75 |
-
@app.route('/ACCESS/
|
76 |
def TheWellermanGroupAI():
|
77 |
return 'Access Denied'
|
78 |
-
@app.route('/ACCESS/
|
79 |
def TheWellermanGroupChatbox():
|
80 |
return 'Access Denied'
|
81 |
|
|
|
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 |
|