11 lines
171 B
Go
11 lines
171 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"github.com/mitchellh/packer/builder/qemu"
|
||
|
"github.com/mitchellh/packer/packer/plugin"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
plugin.ServeBuilder(new(qemu.Builder))
|
||
|
}
|