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

Function import_all_from_env

api/importer/all.py:6–13  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

4
5
6async def import_all_from_env():
7 try:
8 await import_plugins_from_env()
9 await import_default_config_from_env()
10 await import_datasources_from_env()
11 except Exception as e:
12 print("Failed to import all from env", e)
13 return None

Calls 3

import_plugins_from_envFunction · 0.90