Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2024-06-26 07:06:41

0001 from flask import Flask
0002 
0003 
0004 def create_server(debug=False):
0005     """Create an application."""
0006     app = Flask(__name__)
0007     app.debug = debug
0008     app.config['SECRET_KEY'] = 'gjr39dkfgdfjn344_!67#'
0009 
0010     from pyjano.server.class='include' href="/lxr/source/pyjano/pyjano/server/jana.py">jana import jana_blueprint
0011     app.register_blueprint(jana_blueprint)
0012     return app
0013