Files
turbomaps-er/main.go
Bel LaPointe 6b9c2e77a0 init
2026-03-08 19:43:09 -06:00

17 lines
237 B
Go

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)
}
}