MCPcopy Create free account
hub / github.com/Louisym/MiniCC / DeferredInitResult

Class DeferredInitResult

src/deferred_init.py:7–20  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5
6@dataclass(frozen=True)
7class DeferredInitResult:
8 trusted: bool
9 plugin_init: bool
10 skill_init: bool
11 mcp_prefetch: bool
12 session_hooks: bool
13
14 def as_lines(self) -> tuple[str, ...]:
15 return (
16 f'- plugin_init={self.plugin_init}',
17 f'- skill_init={self.skill_init}',
18 f'- mcp_prefetch={self.mcp_prefetch}',
19 f'- session_hooks={self.session_hooks}',
20 )
21
22
23def run_deferred_init(trusted: bool) -> DeferredInitResult:

Callers 1

run_deferred_initFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected