github.com/altoros/juju-vmware@v0.0.0-20150312064031-f19ae857ccca/cmd/plugins/local/juju-local/main.go (about)

     1  // Copyright 2014 Canonical Ltd.
     2  // Licensed under the AGPLv3, see LICENCE file for details.
     3  
     4  package main
     5  
     6  import (
     7  	"os"
     8  
     9  	"github.com/juju/juju/cmd/plugins/local"
    10  	// Import only the local provider.
    11  	_ "github.com/juju/juju/provider/local"
    12  )
    13  
    14  func main() {
    15  	local.Main(os.Args)
    16  }