can search

This commit is contained in:
Bel LaPointe
2026-03-08 20:45:47 -06:00
parent cddb6f4280
commit e8783c982d
2 changed files with 43 additions and 18 deletions

View File

@@ -10,7 +10,7 @@ import (
func main() {
ctx, can := signal.NotifyContext(context.Background(), syscall.SIGINT)
defer can()
if err := cmd.Main(ctx); err != nil {
if err := cmd.Run(ctx); err != nil {
panic(err)
}
}