python-dependency-injector/examples/applications/ghnav-flask/githubnavigator/entrypoint.py

9 lines
160 B
Python
Raw Normal View History

"""Entrypoint module."""
from .application import Application
application = Application()
application.config.from_yaml('config.yml')
app = application.app()