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

View File

@ -3,6 +3,7 @@ package main
import (
"context"
"os/signal"
"replicator/replicator"
"syscall"
)

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")
}