Use a GOPATH workspace format
This commit is contained in:
parent
4174c5f2f2
commit
1748ca31f6
|
@ -1 +1 @@
|
|||
/packer
|
||||
/bin
|
||||
|
|
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"name": "ubuntu-12.04.2-server-amd64",
|
||||
|
||||
"builders": [
|
||||
"virtualbox": {
|
||||
"os_type": "Ubuntu_64",
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,8 +1,12 @@
|
|||
// This is the main package for the `packer` application.
|
||||
package main
|
||||
|
||||
import "fmt"
|
||||
import (
|
||||
"fmt"
|
||||
"os"
|
||||
)
|
||||
|
||||
func main() {
|
||||
fmt.Printf("%#v\n", os.Args)
|
||||
fmt.Println("Hello, world.")
|
||||
}
|
Loading…
Reference in New Issue