main
bel 2024-02-14 07:24:00 -07:00
parent 2ba218e407
commit 75447320dc
2 changed files with 22 additions and 0 deletions

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module charts
go 1.21.1

19
main.go Normal file
View File

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