in src/functions_framework/_http/__init__.py [0:0]
def __init__(self, app, debug, **options):
self.app = app
self.debug = debug
self.options = options
if self.debug:
self.server_class = FlaskApplication
else:
try:
from functions_framework._http.gunicorn import GunicornApplication
self.server_class = GunicornApplication
except ImportError as e:
self.server_class = FlaskApplication