7 lines
133 B
Python
7 lines
133 B
Python
import flask
|
|
api_routes = flask.Blueprint("api", __name__)
|
|
|
|
@api_routes.route("/newGame")
|
|
def hello():
|
|
return "Created new game"
|