Commit f035b7a0 authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

website: update the interfaces for extending

parent 620a864c
......@@ -38,7 +38,7 @@ what each method should do.
<pre class="prettyprint">
type PostProcessor interface {
Configure(interface{}) error
PostProcess(Artifact) (Artifact, error)
PostProcess(Ui, Artifact) (Artifact, error)
}
</pre>
......
......@@ -33,7 +33,7 @@ what each method should do.
<pre class="prettyprint">
type Provisioner interface {
Prepare(...interface{}) error
Provision(Ui, Communicator)
Provision(Ui, Communicator) error
}
</pre>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment