feat(executor): add initial cache_helpers.go file
This commit is contained in:
Luis Pater
2025-10-20 10:17:29 +08:00
parent fed6f3ecd7
commit eadccb229f
2 changed files with 56 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
package executor
import "time"
type codexCache struct {
ID string
Expire time.Time
}
var codexCacheMap = map[string]codexCache{}