fix: don't ensure latest on auto-complete

See #567
This commit is contained in:
2025-08-18 10:11:23 +02:00
parent f519e972df
commit e02415fab0
16 changed files with 1909 additions and 4 deletions

12
pkg/cache/cache.go vendored Normal file
View File

@ -0,0 +1,12 @@
package cache
import (
"time"
"github.com/kofalt/go-memoize"
)
var (
MemCache = memoize.NewMemoizer(90*time.Second, 10*time.Minute)
CatalogueCacheKey = "catalogue"
)