|
3 | 3 | from mcp.server.fastmcp import Context |
4 | 4 | from typing_extensions import Literal |
5 | 5 |
|
6 | | -from connectors.destination.astra import ( |
| 6 | +from uns_mcp.connectors.destination.astra import ( |
7 | 7 | create_astradb_destination, |
8 | 8 | update_astradb_destination, |
9 | 9 | ) |
10 | | -from connectors.destination.databricks_vdt import ( |
| 10 | +from uns_mcp.connectors.destination.databricks_vdt import ( |
11 | 11 | create_databricks_delta_table_destination, |
12 | 12 | update_databricks_delta_table_destination, |
13 | 13 | ) |
14 | | -from connectors.destination.databricksvolumes import ( |
| 14 | +from uns_mcp.connectors.destination.databricksvolumes import ( |
15 | 15 | create_databricks_volumes_destination, |
16 | 16 | update_databricks_volumes_destination, |
17 | 17 | ) |
18 | | -from connectors.destination.mongo import ( |
| 18 | +from uns_mcp.connectors.destination.mongo import ( |
19 | 19 | create_mongodb_destination, |
20 | 20 | update_mongodb_destination, |
21 | 21 | ) |
22 | | -from connectors.destination.neo4j import ( |
| 22 | +from uns_mcp.connectors.destination.neo4j import ( |
23 | 23 | create_neo4j_destination, |
24 | 24 | update_neo4j_destination, |
25 | 25 | ) |
26 | | -from connectors.destination.pinecone import ( |
| 26 | +from uns_mcp.connectors.destination.pinecone import ( |
27 | 27 | create_pinecone_destination, |
28 | 28 | update_pinecone_destination, |
29 | 29 | ) |
30 | | -from connectors.destination.s3 import create_s3_destination, update_s3_destination |
31 | | -from connectors.destination.weaviate import ( |
| 30 | +from uns_mcp.connectors.destination.s3 import ( |
| 31 | + create_s3_destination, |
| 32 | + update_s3_destination, |
| 33 | +) |
| 34 | +from uns_mcp.connectors.destination.weaviate import ( |
32 | 35 | create_weaviate_destination, |
33 | 36 | update_weaviate_destination, |
34 | 37 | ) |
|
0 commit comments