mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-28 12:33:59 +03:00
10 lines
222 B
Python
10 lines
222 B
Python
|
"""Entrypoint module."""
|
||
|
|
||
|
from .application import Application
|
||
|
|
||
|
|
||
|
application = Application()
|
||
|
application.config.from_yaml('config.yml')
|
||
|
application.config.github.auth_token.from_env('GITHUB_TOKEN')
|
||
|
app = application.app()
|