This commit is contained in:
2024-12-28 05:44:25 +08:00
parent 27a390f0d6
commit cb4bd0ad1f
2 changed files with 8 additions and 1 deletions

View File

@@ -234,3 +234,10 @@ var orderType = graphql.NewEnum(graphql.EnumConfig{
},
},
})
type Cache struct {
time time.Time
ids []string
}
var cache map[string]Cache = make(map[string]Cache)