aboutsummaryrefslogtreecommitdiffstats
path: root/client/go/main.go
blob: 3803ee357b2239ba25f0b3cee5a9c24f437afd99 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright Verizon Media. 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/cmd"
)

func main() {
    cmd.Execute()
}