You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
380 B
Python
24 lines
380 B
Python
import json
|
|
from flask import Flask, jsonify
|
|
from flask_cors import CORS
|
|
|
|
from .lib import generate_map
|
|
|
|
app = Flask(__name__)
|
|
CORS(app)
|
|
|
|
|
|
@app.route('/')
|
|
def index():
|
|
return 'Hello World'
|
|
|
|
|
|
@app.route('/generate')
|
|
def generate():
|
|
return jsonify(generate_map(10, 8))
|
|
|
|
|
|
@app.route('/generate/<int:x>/<int:y>')
|
|
def generate_var(x, y):
|
|
return jsonify(generate_map(x, y))
|