Files
red-apter/main.go
Bel LaPointe 72a976bdd0 wip
2026-02-03 16:56:42 -07:00

18 lines
235 B
Go

package main
import (
"context"
"os/signal"
"red-apter/src"
"syscall"
)
func main() {
ctx, can := signal.NotifyContext(context.Background(), syscall.SIGINT)
defer can()
if err := src.Main(ctx); err != nil {
panic(err)
}
}