packer-cn/builder/amazon/builder.go
Mitchell Hashimoto db1c11fff5 Lots of stuff, too early for meaningful commit messages
UI, command dispatch
2013-03-24 14:03:53 -07:00

23 lines
284 B
Go

package amazon
type config struct {
AccessKey string
Region string
SecretKey string
SourceAmi string
}
type Builder struct {
config config
}
func (b *Builder) ConfigInterface() interface{} {
return &b.config
}
func (*Builder) Prepare() {
}
func (b *Builder) Build() {
}