Appease the linters.

This commit is contained in:
pat@pulumi.com 2018-01-05 17:35:22 -08:00
parent b96217341f
commit 7782a83030
2 changed files with 2 additions and 2 deletions

View file

@ -32,7 +32,7 @@ func newStackImportCmd() *cobra.Command {
}
var deployment json.RawMessage
if err := json.NewDecoder(os.Stdin).Decode(&deployment); err != nil {
if err = json.NewDecoder(os.Stdin).Decode(&deployment); err != nil {
return err
}

View file

@ -24,7 +24,7 @@ type Stack interface {
Update(debug bool, opts engine.DeployOptions) error // update this stack.
Destroy(debug bool, opts engine.DestroyOptions) error // destroy this stack's resources.
GetLogs(query operations.LogQuery) ([]operations.LogEntry, error) // list log entries for this stack.
ExportDeployment() (json.RawMessage, error) // export this stack's deployment as an opaque JSON message.
ExportDeployment() (json.RawMessage, error) // export this stack's deployment.
ImportDeployment(json.RawMessage) error // import the given deployment into this stack.
}