python-dependency-injector/examples/applications/ghnav-flask/githubnavigator/entrypoint.py
2020-07-09 19:01:27 -04:00

9 lines
160 B
Python

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