github.com/altipla-consulting/ravendb-go-client@v0.1.3/i_maintenance_operation.go (about)

     1  package ravendb
     2  
     3  // For documentation/porting only. Go has no generics so it's the same
     4  // as IMaintenanceOperation
     5  type IVoidMaintenanceOperation = IMaintenanceOperation
     6  
     7  type IMaintenanceOperation interface {
     8  	GetCommand(*DocumentConventions) (RavenCommand, error)
     9  }