mirror of
https://github.com/hashicorp/terraform.git
synced 2026-02-18 18:29:44 -05:00
Fix console godoc
This commit is contained in:
parent
dceb8453af
commit
fec1ca69ac
2 changed files with 5 additions and 6 deletions
|
|
@ -423,11 +423,10 @@ func initCommands(
|
|||
}
|
||||
|
||||
HiddenCommands = map[string]struct{}{
|
||||
"env": struct{}{},
|
||||
"internal-plugin": struct{}{},
|
||||
"push": struct{}{},
|
||||
"env": {},
|
||||
"internal-plugin": {},
|
||||
"push": {},
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// makeShutdownCh creates an interrupt listener and returns a channel.
|
||||
|
|
|
|||
|
|
@ -19,8 +19,8 @@ import (
|
|||
"github.com/mitchellh/cli"
|
||||
)
|
||||
|
||||
// ConsoleCommand is a Command implementation that applies a Terraform
|
||||
// configuration and actually builds or changes infrastructure.
|
||||
// ConsoleCommand is a Command implementation that starts an interactive
|
||||
// console that can be used to try expressions with the current config.
|
||||
type ConsoleCommand struct {
|
||||
Meta
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue