github.com/openshift/installer@v1.4.17/pkg/destroy/vsphere/register.go (about)

     1  // Package vsphere provides a cluster-destroyer for vsphere clusters.
     2  package vsphere
     3  
     4  import (
     5  	"github.com/openshift/installer/pkg/destroy/providers"
     6  )
     7  
     8  func init() {
     9  	providers.Registry["vsphere"] = New
    10  }