This commit is contained in:
Bel LaPointe
2026-03-08 19:43:09 -06:00
parent 44988e98c6
commit 6b9c2e77a0
4 changed files with 27 additions and 1 deletions

16
main.go Normal file
View File

@@ -0,0 +1,16 @@
package main
import (
"context"
"os/signal"
"syscall"
"turbomaps-er/cmd"
)
func main() {
ctx, can := signal.NotifyContext(context.Background(), syscall.SIGINT)
defer can()
if err := cmd.Main(ctx); err != nil {
panic(err)
}
}