File size: 358 Bytes
d47b053 | 1 2 3 4 5 6 7 8 9 | /**
* Database - 统一导出
*/
export { getDatabaseConfig, isDatabaseReady, isStudioDatabaseReady, isSupabaseConfigured } from './config'
export { getSupabaseClient } from './client'
export { createHistory, listHistory, getHistory, deleteHistory } from './history.service'
export type { HistoryRow, CreateHistoryInput, PaginatedResult } from './types'
|