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
}