This commit is contained in:
bel
2023-07-16 13:22:40 -06:00
parent 4ebd5a0214
commit 4f9a11f4f9
3 changed files with 29 additions and 0 deletions

10
src/main.go Normal file
View File

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