cmd/server: fix cmd name and usage

Signed-off-by: Antonio Murdaca <runcom@redhat.com>
This commit is contained in:
Antonio Murdaca 2016-09-23 09:31:31 +02:00
parent f5614a116f
commit 45a7cb3fdf
No known key found for this signature in database
GPG key ID: B2BEAD150DE936B9

View file

@ -7,15 +7,16 @@ import (
"github.com/Sirupsen/logrus"
"github.com/kubernetes-incubator/ocid/server"
"k8s.io/kubernetes/pkg/kubelet/api/v1alpha1/runtime"
"github.com/urfave/cli"
"google.golang.org/grpc"
"k8s.io/kubernetes/pkg/kubelet/api/v1alpha1/runtime"
)
func main() {
app := cli.NewApp()
app.Name = "ocic"
app.Usage = "client for ocid"
app.Name = "ocid"
app.Usage = "ocid server"
app.Version = "0.0.1"
app.Flags = []cli.Flag{
cli.StringFlag{