blob: 87e618b0a61bf5fc291373312609c27336cf085f [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.
package main
import (
"sample/sampleworld"
"v.io/v23"
_ "v.io/x/ref/profiles/static"
)
func main() {
ctx, shutdown := v23.Init()
defer shutdown()
sampleworld.RunSampleWorld(ctx)
}