11 lines
284 B
Python
11 lines
284 B
Python
from planfix_client import PlanfixClient
|
|
from chain_service.settings import Settings
|
|
|
|
|
|
async def get_planfix_client() -> PlanfixClient:
|
|
settings = Settings()
|
|
|
|
return PlanfixClient(
|
|
planfix_hostname=settings.planfix_hostname, planfix_token=settings.planfix_token
|
|
)
|