...

Source file src/edge-infra.dev/cmd/edge/datasync/couchctl/main.go

Documentation: edge-infra.dev/cmd/edge/datasync/couchctl

     1  package main
     2  
     3  import (
     4  	"os"
     5  
     6  	"edge-infra.dev/pkg/edge/datasync/controllers/couchctl"
     7  )
     8  
     9  func main() {
    10  	if err := couchctl.Run(); err != nil {
    11  		os.Exit(1)
    12  	}
    13  }
    14  

View as plain text