12 lines
317 B
Go
12 lines
317 B
Go
package api_feature
|
|
|
|
// FetchStatus 数据拉取状态(暂未使用,保留供未来扩展)
|
|
type FetchStatus string
|
|
|
|
const (
|
|
FetchStatusPending FetchStatus = "pending"
|
|
FetchStatusRunning FetchStatus = "running"
|
|
FetchStatusCompleted FetchStatus = "completed"
|
|
FetchStatusFailed FetchStatus = "failed"
|
|
)
|