mirror of
https://github.com/router-for-me/CLIProxyAPI.git
synced 2026-02-03 13:00:52 +08:00
11 lines
138 B
Go
11 lines
138 B
Go
package executor
|
|
|
|
import "time"
|
|
|
|
type codexCache struct {
|
|
ID string
|
|
Expire time.Time
|
|
}
|
|
|
|
var codexCacheMap = map[string]codexCache{}
|