Fix return value; Remove short flags to avoid collisions; Update documentation
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-01-18 12:16:51 +01:00
parent a38b097309
commit 5c12ec5b93
4 changed files with 12 additions and 9 deletions

View File

@ -29,7 +29,7 @@ func NewClient(ctx context.Context, host, username, password string, insecure bo
return nil, err
}
return clt, err
return clt, nil
}
func DatacenterFinder(ctx context.Context, clt *vim25.Client, datacenter string) (*find.Finder, error) {