@@ -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)
}
The note is not visible to the blocked user.