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