DmitrMakeev commited on
Commit
a8ce2b2
·
verified ·
1 Parent(s): 2c2c2f9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -0
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