AI
AIGIT · AI 工具站
aigit.cc
首页
精品推荐
AI成品工具
提示词
返回 AiToEarn
content-generation.enum.ts
根目录
/
project
/
aitoearn-backend
/
libs
/
mongodb
/
src
/
enums
/
content-generation.enum.ts
1
export enum ContentGenerationTaskStatus {
2
Running = 'running',
3
Completed = 'completed',
4
RequiresAction = 'requires_action', // 需要用户操作(如绑定频道、更新授权等)
5
Error = 'error',
6
Aborted = 'aborted',
7
}
8
8 lines
TYPESCRIPT