video-flow-toon/src/utils.ts
2026-04-02 23:49:05 +08:00

30 lines
653 B
TypeScript

import db from "@/utils/db";
import oss from "@/utils/oss";
import getConfig from "./utils/getConfig";
import { v4 as uuid } from "uuid";
import error from "@/utils/error";
import cleanNovel from "./utils/cleanNovel";
import getPath from "@/utils/getPath";
import vm from "@/utils/vm";
import task from "@/utils/taskRecord";
import Ai from "@/utils/ai";
import { getPrompts } from "@/utils/getPrompts";
import { getArtPrompt } from "@/utils/getArtPrompt";
import replaceUrl from "@/utils/replaceUrl";
export default {
db,
oss,
getConfig,
uuid,
error,
cleanNovel,
vm,
getPath,
Ai,
task,
getPrompts,
getArtPrompt,
replaceUrl
};