e1b3e9e6ae
Add patch support and resumeable sha Implement all actual registry methods Add a simple database generation option
13 lines
359 B
Python
13 lines
359 B
Python
import logging
|
|
import logging.config
|
|
|
|
from app import app as application
|
|
|
|
# Note: We need to import this module to make sure the decorators are registered.
|
|
import endpoints.decorated
|
|
|
|
from endpoints.v1 import v1_bp
|
|
from endpoints.v2 import v2_bp
|
|
|
|
application.register_blueprint(v1_bp, url_prefix='/v1')
|
|
application.register_blueprint(v2_bp, url_prefix='/v2')
|