created nonfunctional init command

This commit is contained in:
Senad Uka
2015-05-28 15:56:48 +02:00
parent 9641f4fee7
commit 4ff116ec29
3 changed files with 35 additions and 3 deletions

View File

@@ -1 +1,11 @@
package init
package main
import (
"fmt"
)
func initCommand(guid string) {
fmt.Printf("initializing %v\n", guid)
}