mirror of
https://github.com/yhirose/cpp-httplib.git
synced 2025-05-15 09:18:27 +00:00
Add benchmark tool
This commit is contained in:
parent
b4989130da
commit
c75d071615
6 changed files with 14388 additions and 0 deletions
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!'
|
Loading…
Add table
Add a link
Reference in a new issue