This commit is contained in:
Bel LaPointe
2025-04-04 12:23:27 -06:00
parent b832cd7743
commit 5a74290409
4 changed files with 37 additions and 0 deletions

20
main.go Normal file
View File

@@ -0,0 +1,20 @@
package main
import (
"context"
"os/signal"
"syscall"
)
func main() {
ctx, can := signal.NotifyContext(context.Background(), syscall.SIGINT)
defer can()
if err := Run(ctx); err != nil {
panic(err)
}
}
func Run(ctx context.Context) error {
return nil
}