DmitrMakeev commited on
Commit
c2c0e46
·
verified ·
1 Parent(s): b111971

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py CHANGED
@@ -1138,6 +1138,12 @@ def koleso_gen():
1138
  return render_template('koleso.html')
1139
 
1140
 
 
 
 
 
 
 
1141
 
1142
 
1143
 
 
1138
  return render_template('koleso.html')
1139
 
1140
 
1141
+ @app.route('/builder', methods=['GET'])
1142
+ def builder_gen():
1143
+ api_sys_control = request.args.get('api_sys')
1144
+ if api_sys_control != api_key_sys:
1145
+ return "EUR 22", 200
1146
+ return render_template('builder.html')
1147
 
1148
 
1149