mirror of
https://github.com/Oxalide/vsphere-influxdb-go.git
synced 2023-10-10 13:36:51 +02:00
82 lines
3.1 KiB
Go
82 lines
3.1 KiB
Go
|
/*
|
||
|
Copyright (c) 2014-2017 VMware, Inc. All Rights Reserved.
|
||
|
|
||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
you may not use this file except in compliance with the License.
|
||
|
You may obtain a copy of the License at
|
||
|
|
||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||
|
|
||
|
Unless required by applicable law or agreed to in writing, software
|
||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
See the License for the specific language governing permissions and
|
||
|
limitations under the License.
|
||
|
*/
|
||
|
|
||
|
package main
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
|
||
|
"github.com/vmware/govmomi/govc/cli"
|
||
|
|
||
|
_ "github.com/vmware/govmomi/govc/about"
|
||
|
_ "github.com/vmware/govmomi/govc/cluster"
|
||
|
_ "github.com/vmware/govmomi/govc/datacenter"
|
||
|
_ "github.com/vmware/govmomi/govc/datastore"
|
||
|
_ "github.com/vmware/govmomi/govc/datastore/disk"
|
||
|
_ "github.com/vmware/govmomi/govc/datastore/vsan"
|
||
|
_ "github.com/vmware/govmomi/govc/device"
|
||
|
_ "github.com/vmware/govmomi/govc/device/cdrom"
|
||
|
_ "github.com/vmware/govmomi/govc/device/floppy"
|
||
|
_ "github.com/vmware/govmomi/govc/device/scsi"
|
||
|
_ "github.com/vmware/govmomi/govc/device/serial"
|
||
|
_ "github.com/vmware/govmomi/govc/device/usb"
|
||
|
_ "github.com/vmware/govmomi/govc/dvs"
|
||
|
_ "github.com/vmware/govmomi/govc/dvs/portgroup"
|
||
|
_ "github.com/vmware/govmomi/govc/env"
|
||
|
_ "github.com/vmware/govmomi/govc/events"
|
||
|
_ "github.com/vmware/govmomi/govc/extension"
|
||
|
_ "github.com/vmware/govmomi/govc/fields"
|
||
|
_ "github.com/vmware/govmomi/govc/folder"
|
||
|
_ "github.com/vmware/govmomi/govc/host"
|
||
|
_ "github.com/vmware/govmomi/govc/host/account"
|
||
|
_ "github.com/vmware/govmomi/govc/host/autostart"
|
||
|
_ "github.com/vmware/govmomi/govc/host/cert"
|
||
|
_ "github.com/vmware/govmomi/govc/host/date"
|
||
|
_ "github.com/vmware/govmomi/govc/host/esxcli"
|
||
|
_ "github.com/vmware/govmomi/govc/host/firewall"
|
||
|
_ "github.com/vmware/govmomi/govc/host/maintenance"
|
||
|
_ "github.com/vmware/govmomi/govc/host/option"
|
||
|
_ "github.com/vmware/govmomi/govc/host/portgroup"
|
||
|
_ "github.com/vmware/govmomi/govc/host/service"
|
||
|
_ "github.com/vmware/govmomi/govc/host/storage"
|
||
|
_ "github.com/vmware/govmomi/govc/host/vnic"
|
||
|
_ "github.com/vmware/govmomi/govc/host/vswitch"
|
||
|
_ "github.com/vmware/govmomi/govc/importx"
|
||
|
_ "github.com/vmware/govmomi/govc/license"
|
||
|
_ "github.com/vmware/govmomi/govc/logs"
|
||
|
_ "github.com/vmware/govmomi/govc/ls"
|
||
|
_ "github.com/vmware/govmomi/govc/metric"
|
||
|
_ "github.com/vmware/govmomi/govc/metric/interval"
|
||
|
_ "github.com/vmware/govmomi/govc/object"
|
||
|
_ "github.com/vmware/govmomi/govc/option"
|
||
|
_ "github.com/vmware/govmomi/govc/permissions"
|
||
|
_ "github.com/vmware/govmomi/govc/pool"
|
||
|
_ "github.com/vmware/govmomi/govc/role"
|
||
|
_ "github.com/vmware/govmomi/govc/session"
|
||
|
_ "github.com/vmware/govmomi/govc/vapp"
|
||
|
_ "github.com/vmware/govmomi/govc/version"
|
||
|
_ "github.com/vmware/govmomi/govc/vm"
|
||
|
_ "github.com/vmware/govmomi/govc/vm/disk"
|
||
|
_ "github.com/vmware/govmomi/govc/vm/guest"
|
||
|
_ "github.com/vmware/govmomi/govc/vm/network"
|
||
|
_ "github.com/vmware/govmomi/govc/vm/rdm"
|
||
|
_ "github.com/vmware/govmomi/govc/vm/snapshot"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
os.Exit(cli.Run(os.Args[1:]))
|
||
|
}
|