~themue/pyjuju/go-state-auth

« back to all changes in this revision

Viewing changes to cmd/juju/bootstrap.go

  • Committer: William Reade
  • Date: 2012-02-09 11:35:24 UTC
  • mto: (61.1.1 go)
  • mto: This revision was merged to the branch mainline in revision 63.
  • Revision ID: fwereade@gmail.com-20120209113524-qnwh84dafrulbmw8
addressed easy review points

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
 
15
15
// Info returns a description of BootstrapCommand.
16
16
func (c *BootstrapCommand) Info() *cmd.Info {
17
 
        return cmd.NewInfo(
 
17
        return &cmd.Info{
18
18
                "bootstrap", "[options]",
19
19
                "start up an environment from scratch",
20
20
                "",
21
 
        )
 
21
                true,
 
22
        }
22
23
}
23
24
 
24
25
// InitFlagSet prepares a FlagSet for use.