github.com/cloud-green/juju@v0.0.0-20151002100041-a00291338d3d/cmd/juju/main.go (about) 1 // Copyright 2012, 2013 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/juju/commands" 10 // Import the providers. 11 _ "github.com/juju/juju/provider/all" 12 ) 13 14 func main() { 15 commands.Main(os.Args) 16 }