mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2025-01-31 03:36:41 +03:00
15 lines
222 B
Python
15 lines
222 B
Python
import os
|
|
|
|
|
|
class ApiClient:
|
|
|
|
def __init__(self):
|
|
self.api_key = os.getenv('API_KEY')
|
|
self.timeout = os.getenv('TIMEOUT')
|
|
|
|
|
|
class Service:
|
|
|
|
def __init__(self):
|
|
self.api_client = ApiClient()
|