add constructor for Builder

this makes it easier to track required dependencies as they change

(todo: actually, like, use it for required dependencies)
This commit is contained in:
Alex Suraci
2014-02-24 15:41:14 -08:00
parent 0e98f294a3
commit fc01782554
3 changed files with 9 additions and 5 deletions

View File

@@ -35,6 +35,10 @@ type BuildState struct {
// Max RAM, Max Swap, Disk space, and more.
}
func New() *Builder {
return &Builder{}
}
// Builder represents a build process being prepared
// to run.
type Builder struct {