MCPcopy Create free account
hub / github.com/dbunt1tled/python-fast-api / __init__

Method __init__

src/core/http/controller.py:13–16  ·  view source on GitHub ↗
(self, container: Container)

Source from the content-addressed store, hash-verified

11
12class BaseController(ABC):
13 def __init__(self, container: Container):
14 self.container = container
15 self.api_response_service = ApiResponseService(container=container)
16 self.logger = logging.getLogger(__name__)
17
18 def get_container(self) -> Container:
19 return self.container

Callers

nothing calls this directly

Calls 1

ApiResponseServiceClass · 0.90

Tested by

no test coverage detected