blob: 46c85c4b5ffa5c20f88a6c45062e9a15f6687da2 [file] [log] [blame]
// Copyright 2015 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// The following enables go generate to generate the doc.go file.
//go:generate go run $V23_ROOT/release/go/src/v.io/x/lib/cmdline/testdata/gendoc.go .
package main
import (
"os"
"v.io/v23"
_ "v.io/x/ref/profiles/static"
)
func main() {
gctx, shutdown := v23.Init()
SetGlobalContext(gctx)
exitCode := Root().Main()
shutdown()
os.Exit(exitCode)
}