MCPcopy Create free account
hub / github.com/GerevAI/gerev / __init__

Method __init__

app/data_source/sources/bookstack/bookstack.py:144–148  ·  view source on GitHub ↗
(self, *args, **kwargs)

Source from the content-addressed store, hash-verified

142 raise InvalidDataSourceConfig from e
143
144 def __init__(self, *args, **kwargs):
145 super().__init__(*args, **kwargs)
146 book_stack_config = BookStackConfig(**self._raw_config)
147 self._book_stack = BookStack(url=book_stack_config.url, token_id=book_stack_config.token_id,
148 token_secret=book_stack_config.token_secret)
149
150 def _list_books(self) -> List[Dict]:
151 logger.info("Listing books with BookStack")

Callers

nothing calls this directly

Calls 3

BookStackConfigClass · 0.85
BookStackClass · 0.85
__init__Method · 0.45

Tested by

no test coverage detected