This commit is contained in:
bel
2023-03-01 20:11:56 -07:00
parent 44048b126c
commit b65d2134f5
3 changed files with 35 additions and 0 deletions

10
src/main.go Normal file
View File

@@ -0,0 +1,10 @@
package src
import (
"context"
"errors"
)
func Main(ctx context.Context) error {
return errors.New("not impl")
}