This commit is contained in:
bel
2023-11-05 07:19:41 -07:00
parent b8b4e1289b
commit a51995b9bd
2 changed files with 11 additions and 0 deletions

10
replicator/replicator.go Normal file
View File

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