Initial commit

This commit is contained in:
lash
2024-10-23 21:01:10 +01:00
commit 7c10a881fe
10 changed files with 262 additions and 0 deletions

31
cmd/main.go Normal file
View File

@@ -0,0 +1,31 @@
package main
import (
"context"
"fmt"
"os"
"os/signal"
"syscall"
"git.grassecon.net/term/event/nats"
)
func main() {
ctx := context.Background()
n := nats.NewNatsSubscription()
err := n.Connect(ctx, "localhost:4222")
if err != nil {
fmt.Fprintf(os.Stderr, "Connect err: %v", err)
os.Exit(1)
}
defer n.Close()
cint := make(chan os.Signal)
cterm := make(chan os.Signal)
signal.Notify(cint, os.Interrupt, syscall.SIGINT)
signal.Notify(cterm, os.Interrupt, syscall.SIGTERM)
select {
case _ = <-cint:
case _ = <-cterm:
}
}