Demo script updates. Record-replay, a bugfix in the canary demo script, etc.
8 lines
128 B
Python
8 lines
128 B
Python
from flask import request
|
|
from flask import current_app
|
|
|
|
|
|
def main():
|
|
name=request.args["name"]
|
|
return "Hello, %s" % name
|