github.com/mattyw/juju@v0.0.0-20140610034352-732aecd63861/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  
    11  	// Import only the local provider.
    12  	_ "github.com/juju/juju/provider/local"
    13  )
    14  
    15  func main() {
    16  	local.Main(os.Args)
    17  }