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