You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
249 B
Python
8 lines
249 B
Python
5 years ago
|
from flask.app import Flask
|
||
|
from api.api import api_bp
|
||
|
from client.client import client_bp
|
||
|
|
||
|
app = Flask(__name__)
|
||
|
app.config['JSONIFY_PRETTYPRINT_REGULAR'] = True
|
||
|
app.register_blueprint(api_bp, url_prefix='/api_v1')
|
||
|
app.register_blueprint(client_bp)
|