chore: 新网dns完善

This commit is contained in:
xiaojunnuo
2025-09-23 23:27:36 +08:00
parent 298f7d9d52
commit 2c1600ddfb
5 changed files with 30 additions and 1 deletions

View File

@@ -7,3 +7,4 @@ export * from "./qiniu/index.js";
export * from "./ctyun/index.js";
export * from "./oss/index.js";
export * from "./s3/index.js";
export * from "./lib/index.js";

View File

@@ -0,0 +1 @@
export * from "./ocr-api.js";

View File

@@ -0,0 +1,3 @@
export interface IOcrService {
doOcrFromImage(opts: { image: string }): Promise<{ texts: string[] }>;
}