From 00e3d72fef67072cbde508260cc981b65b076087 Mon Sep 17 00:00:00 2001 From: bruce-gene <150209392+bruce-gene@users.noreply.github.com> Date: Tue, 29 Jul 2025 17:42:12 +0800 Subject: [PATCH] Update introduction.md Corrected the import statements in the UTCP introduction page. Updated from: from utcp.client import UtcpClient to: from utcp.client.utcp_client import UtcpClient This change reflects the correct way to import UtcpClient as per the latest library structure. --- docs/introduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/introduction.md b/docs/introduction.md index 53a1f25..5d39a94 100644 --- a/docs/introduction.md +++ b/docs/introduction.md @@ -91,7 +91,7 @@ uvicorn app:app --reload ```python # client.py import asyncio -from utcp.client import UtcpClient +from utcp.client.utcp_client import UtcpClient from utcp.shared.provider import HttpProvider async def main():