Files
shensheshou/data-ingestion/ingestion-service.ts
v0 2408d50cb0 refactor: overhaul UI for streamlined user experience
Redesign navigation, home overview, user portrait, and valuation pages
with improved functionality and responsive design.

Co-authored-by: null <4804959+fnvtk@users.noreply.github.com>
2025-07-18 13:47:12 +00:00

7 lines
211 B
TypeScript

import type { DataSource } from "./data-source"
// 定义数据接入服务接口
export interface IngestionService {
ingestData(dataSource: DataSource): Promise<any[]> // 接入数据,返回数据列表
}