repo stub

main
Bel LaPointe 2024-12-14 18:06:54 -07:00
parent d8e199b96d
commit 8aec1e0eab
2 changed files with 24 additions and 0 deletions

21
cmd/server/main.go Normal file
View File

@ -0,0 +1,21 @@
package main
import (
"context"
"io"
"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 io.EOF
}

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module gitea.inhome.blapointe.com/bel/out
go 1.22.3