mirror of
https://github.com/langchain-ai/mcpdoc.git
synced 2025-10-19 03:18:14 +03:00
8 lines
199 B
Python
8 lines
199 B
Python
def test_imports():
|
|
"""Test that main modules can be imported."""
|
|
from mcpdoc import main # noqa
|
|
from mcpdoc import cli # noqa
|
|
from mcpdoc import langgraph # noqa
|
|
|
|
assert True
|