Files
CLIProxyAPI/internal/runtime/executor/cache_helpers.go
Luis Pater eadccb229f Fixed: #148
feat(executor): add initial cache_helpers.go file
2025-10-20 10:17:29 +08:00

11 lines
138 B
Go

package executor
import "time"
type codexCache struct {
ID string
Expire time.Time
}
var codexCacheMap = map[string]codexCache{}