Packager is now builder (#958)

This commit is contained in:
Milos Gajdos
2019-11-19 16:09:43 +00:00
committed by Asim Aslam
parent 5744050943
commit 6a0082741c
7 changed files with 38 additions and 37 deletions

15
runtime/build/options.go Normal file
View File

@@ -0,0 +1,15 @@
package build
type Options struct {
// local path to download source
Path string
}
type Option func(o *Options)
// Local path for repository
func Path(p string) Option {
return func(o *Options) {
o.Path = p
}
}