aboutsummaryrefslogtreecommitdiffstats
path: root/client/go/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'client/go/main.go')
-rw-r--r--client/go/main.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/client/go/main.go b/client/go/main.go
new file mode 100644
index 00000000000..3803ee357b2
--- /dev/null
+++ b/client/go/main.go
@@ -0,0 +1,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()
+}