2026-04-02 11:51:44 +08:00
|
|
|
package api_feature
|
|
|
|
|
|
2026-06-11 13:06:54 +08:00
|
|
|
// FetchStatus 数据拉取状态(暂未使用,保留供未来扩展)
|
2026-04-02 11:51:44 +08:00
|
|
|
type FetchStatus string
|
|
|
|
|
|
|
|
|
|
const (
|
2026-06-11 13:06:54 +08:00
|
|
|
FetchStatusPending FetchStatus = "pending"
|
|
|
|
|
FetchStatusRunning FetchStatus = "running"
|
|
|
|
|
FetchStatusCompleted FetchStatus = "completed"
|
|
|
|
|
FetchStatusFailed FetchStatus = "failed"
|
2026-04-02 11:51:44 +08:00
|
|
|
)
|