gotta swap to tcp conns

This commit is contained in:
Bel LaPointe
2026-02-03 20:27:45 -07:00
parent 01a699186e
commit 057c5d0d25
7 changed files with 348 additions and 0 deletions

17
main.go Normal file
View File

@@ -0,0 +1,17 @@
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)
}
}