Skip to content

Commit 5dd79b2

Browse files
committed
move memory.py from server/ to shared/
1 parent 0ae03fa commit 5dd79b2

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed
File renamed without changes.

mcp_python/shared/session.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
from contextlib import AbstractAsyncContextManager
22
from datetime import timedelta
33
from typing import Generic, TypeVar
4-
import httpx
54

65
import anyio
76
import anyio.lowlevel
7+
import httpx
88
from anyio.streams.memory import MemoryObjectReceiveStream, MemoryObjectSendStream
99
from pydantic import BaseModel
1010

tests/test_memory.py renamed to tests/shared/test_memory.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
from mcp_python.client.session import ClientSession
55
from mcp_python.server import Server
6-
from mcp_python.server.memory import (
6+
from mcp_python.shared.memory import (
77
create_connected_server_and_client_session,
88
)
99
from mcp_python.types import (

0 commit comments

Comments
 (0)