Skip to content

Commit

Permalink
fix for orchestration docs (#893)
Browse files Browse the repository at this point in the history
fix
  • Loading branch information
nickbristow authored Oct 27, 2023
1 parent cd6ec77 commit 73ab64d
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions containers/orchestration/app/config.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
from functools import lru_cache
from pydantic import BaseSettings
from typing import Optional


class Settings(BaseSettings):
fhir_converter_url: str
validation_url: str
message_parser_url: str
ingestion_url: str
fhir_converter_url: Optional[str]
validation_url: Optional[str]
message_parser_url: Optional[str]
ingestion_url: Optional[str]


@lru_cache()
Expand Down

0 comments on commit 73ab64d

Please sign in to comment.