github.com/altoros/juju-vmware@v0.0.0-20150312064031-f19ae857ccca/provider/all/all.go (about) 1 // Copyright 2013 Canonical Ltd. 2 // Licensed under the AGPLv3, see LICENCE file for details. 3 4 package all 5 6 // Register all the available providers. 7 import ( 8 _ "github.com/juju/juju/provider/azure" 9 _ "github.com/juju/juju/provider/ec2" 10 _ "github.com/juju/juju/provider/joyent" 11 _ "github.com/juju/juju/provider/local" 12 _ "github.com/juju/juju/provider/maas" 13 _ "github.com/juju/juju/provider/manual" 14 _ "github.com/juju/juju/provider/openstack" 15 _ "github.com/juju/juju/provider/vmware" 16 )