Update app.py
Browse files
app.py
CHANGED
@@ -1147,6 +1147,13 @@ def builder_gen():
|
|
1147 |
|
1148 |
|
1149 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1150 |
|
1151 |
|
1152 |
|
|
|
1147 |
|
1148 |
|
1149 |
|
1150 |
+
@app.route('/builder2', methods=['GET'])
|
1151 |
+
def builder2_gen():
|
1152 |
+
api_sys_control = request.args.get('api_sys')
|
1153 |
+
if api_sys_control != api_key_sys:
|
1154 |
+
return "EUR 22", 200
|
1155 |
+
return render_template('builder2.html')
|
1156 |
+
|
1157 |
|
1158 |
|
1159 |
|