This commit is contained in:
Bel LaPointe
2026-03-08 19:43:09 -06:00
parent 44988e98c6
commit 6b9c2e77a0
4 changed files with 27 additions and 1 deletions

10
cmd/main.go Normal file
View File

@@ -0,0 +1,10 @@
package cmd
import (
"context"
"io"
)
func Main(ctx context.Context) error {
return io.EOF
}

2
go.mod
View File

@@ -1,3 +1,3 @@
module gitea/turbomaps-er module turbomaps-er
go 1.24.2 go 1.24.2

0
go.sum Normal file
View File

16
main.go Normal file
View File

@@ -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)
}
}