You've already forked cpp-httplib
Add benchmark tool
This commit is contained in:
9
benchmark/flask/main.py
Normal file
9
benchmark/flask/main.py
Normal file
@ -0,0 +1,9 @@
|
||||
from flask import Flask
|
||||
app = Flask(__name__)
|
||||
|
||||
import logging
|
||||
logging.getLogger('werkzeug').disabled = True
|
||||
|
||||
@app.route('/')
|
||||
def hello_world():
|
||||
return 'Hello, World!'
|
Reference in New Issue
Block a user