mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2025-02-11 17:10:57 +03:00
10 lines
217 B
Python
10 lines
217 B
Python
"""Entrypoint module."""
|
|
|
|
from .application import Application
|
|
|
|
|
|
application = Application()
|
|
application.config.from_yaml('config.yml')
|
|
application.config.github.token.from_env('GITHUB_TOKEN')
|
|
app = application.app()
|