mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2025-02-12 01:20:51 +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()
|