mirror of
https://github.com/hashicorp/packer.git
synced 2026-09-20 06:51:39 -04:00
11 lines
181 B
Go
11 lines
181 B
Go
package main
|
|
|
|
import (
|
|
"github.com/mitchellh/packer/builder/amazonebs"
|
|
"github.com/mitchellh/packer/packer/plugin"
|
|
)
|
|
|
|
func main() {
|
|
plugin.ServeBuilder(new(amazonebs.Builder))
|
|
}
|