pulumi/pkg/resource/deploy/progress.go
joeduffy 35aa6b7559 Rename pulumi/lumi to pulumi/pulumi-fabric
We are renaming Lumi to Pulumi Fabric.  This change simply renames the
pulumi/lumi repo to pulumi/pulumi-fabric, without the CLI tools and other
changes that will follow soon afterwards.
2017-08-02 09:25:22 -07:00

16 lines
440 B
Go

// Copyright 2016-2017, Pulumi Corporation. All rights reserved.
package deploy
import (
"github.com/pulumi/pulumi-fabric/pkg/resource"
)
// Progress can be used for progress reporting.
type Progress interface {
// Before is invoked prior to a step executing.
Before(step Step)
// After is invoked after a step executes, and is given access to the error, if any, that occurred.
After(step Step, state resource.Status, err error)
}