11 lines
177 B
Go
11 lines
177 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"github.com/mitchellh/packer/command/inspect"
|
||
|
"github.com/mitchellh/packer/packer/plugin"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
plugin.ServeCommand(new(inspect.Command))
|
||
|
}
|