MCPcopy Create free account
hub / github.com/IQEngine/IQEngine / get

Function get

api/database/plugin_repo.py:11–15  ·  view source on GitHub ↗
(name)

Source from the content-addressed store, hash-verified

9
10
11async def get(name) -> Plugin:
12 plugin = await collection().find_one({"name": name})
13 if not plugin:
14 return None
15 return Plugin(**plugin)

Callers

nothing calls this directly

Calls 2

PluginClass · 0.90
collectionFunction · 0.70

Tested by

no test coverage detected