16 lines
254 B
Go
16 lines
254 B
Go
|
package main
|
||
|
|
||
|
import ()
|
||
|
|
||
|
var buildCmd = &Command{
|
||
|
Name: "build",
|
||
|
Usage: "",
|
||
|
Summary: "build the go server in the current directory",
|
||
|
Help: `build extended help here...`,
|
||
|
Run: buildRun,
|
||
|
}
|
||
|
|
||
|
func buildRun(cmd *Command, args ...string) {
|
||
|
|
||
|
}
|