summaryrefslogtreecommitdiffstats
path: root/client/go/cmd/vespa/main.go
blob: 4d2390db324e557456bd38d8caa4ec9705c712a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
// Cobra commands main file
// Author: bratseth

package main

import (
	"github.com/vespa-engine/vespa/client/go/cmd"
	"os"
)

func main() {
	if cmd.Execute() != nil {
		os.Exit(1)
	}
}