use the ResetRoot config to clear the cache once a user quits
Some checks are pending
release / docker (push) Waiting to run

This commit is contained in:
Alfred Kamanda 2025-12-08 17:29:13 +03:00
parent 025c32c5f0
commit 2cabae1e74
Signed by: Alfred-mk
GPG Key ID: E60B2165A97F4D41
3 changed files with 11 additions and 8 deletions

View File

@ -84,6 +84,7 @@ func main() {
FlagCount: uint32(128),
MenuSeparator: menuSeparator,
ResetOnEmptyInput: true,
ResetRoot: true, // clear the cache once a user quits
}
if engineDebug {

View File

@ -99,6 +99,7 @@ func main() {
FlagCount: uint32(128),
MenuSeparator: menuSeparator,
ResetOnEmptyInput: true,
ResetRoot: true, // clear the cache once a user quits
}
if engineDebug {

View File

@ -82,6 +82,7 @@ func main() {
MenuSeparator: menuSeparator,
EngineDebug: engineDebug,
ResetOnEmptyInput: true,
ResetRoot: true, // clear the cache once a user quits
}
menuStorageService := storage.NewMenuStorageService(conns)