返回 DeepSeek-Reasonix
final_readiness_recovery.go
根目录 / internal / provider / final_readiness_recovery.go
1 package provider
2
3 import "encoding/json"
4
5 // FinalReadinessRecovery stores provider-excluded recovery state. Checkpoint
6 // stays opaque here to avoid coupling provider types to the evidence package.
7 type FinalReadinessRecovery struct {
8 Pending bool `json:"pending,omitempty"`
9 Missing []string `json:"missing,omitempty"`
10 Checkpoint json.RawMessage `json:"checkpoint,omitempty"`
11 }
12
12 lines GO