@ -0,0 +1,3 @@
module charts
go 1.21.1
@ -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