website: update the interfaces for extending

This commit is contained in:
Mitchell Hashimoto 2013-06-28 09:49:21 -04:00
parent 620a864c49
commit f035b7a08d
2 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ what each method should do.
<pre class="prettyprint"> <pre class="prettyprint">
type PostProcessor interface { type PostProcessor interface {
Configure(interface{}) error Configure(interface{}) error
PostProcess(Artifact) (Artifact, error) PostProcess(Ui, Artifact) (Artifact, error)
} }
</pre> </pre>

View File

@ -33,7 +33,7 @@ what each method should do.
<pre class="prettyprint"> <pre class="prettyprint">
type Provisioner interface { type Provisioner interface {
Prepare(...interface{}) error Prepare(...interface{}) error
Provision(Ui, Communicator) Provision(Ui, Communicator) error
} }
</pre> </pre>