Skip to content

Commit eae3876

Browse files
committed
[CPL-19831] fix typo
1 parent 81b8670 commit eae3876

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/server/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ import { CallToolRequestSchema, ListToolsRequestSchema } from '@modelcontextprot
55
import * as getData from '@/tools/get-data'
66
import * as getSchema from '@/tools/get-schema'
77
import * as listDataflows from '@/tools/list-dataflows'
8-
import * as getDatadlow from '@/tools/get-dataflow'
8+
import * as getDataflow from '@/tools/get-dataflow'
99

1010
const TOOL_MAP = {
1111
[getData.name]: getData.handler,
1212
[getSchema.name]: getSchema.handler,
1313
[listDataflows.name]: listDataflows.handler,
14-
[getDatadlow.name]: getDatadlow.handler,
14+
[getDataflow.name]: getDataflow.handler,
1515
}
1616

1717
export const server = new Server({
@@ -42,7 +42,7 @@ server.setRequestHandler(
4242
getData.toolListEntry,
4343
getSchema.toolListEntry,
4444
listDataflows.toolListEntry,
45-
getDatadlow.toolListEntry,
45+
getDataflow.toolListEntry,
4646
]
4747
})
4848
)

0 commit comments

Comments
 (0)