(context.Context)
| 32 | // CooldownStateStore persists runtime cooldown state independently from auth tokens. |
| 33 | type CooldownStateStore interface { |
| 34 | Load(context.Context) ([]CooldownStateRecord, error) |
| 35 | Save(context.Context, []CooldownStateRecord) error |
| 36 | } |
| 37 |
no outgoing calls