yhirose 1 year ago
parent
commit
3d6e315a4c
2 changed files with 2 additions and 9 deletions
  1. 2 0
      benchmark/Makefile
  2. 0 9
      benchmark/flask/main.py

+ 2 - 0
benchmark/Makefile

@@ -32,6 +32,8 @@ server-crow : crow/main.cpp
 	g++ -o $@ $(CXXFLAGS) crow/main.cpp
 
 # misc
+bench-all: bench-crow bench
+
 issue:
 	$(BENCH)
 

+ 0 - 9
benchmark/flask/main.py

@@ -1,9 +0,0 @@
-from flask import Flask
-app = Flask(__name__)
-
-import logging
-logging.getLogger('werkzeug').disabled = True
-
[email protected]('/')
-def hello_world():
-    return 'Hello, World!'