blob: 1568da5e450e1a86e58df3d20df6b6b5884a93fc [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 (
"flag"
"v.io/x/lib/gosh"
"v.io/x/lib/gosh/internal/gosh_example_lib"
)
var addr = flag.String("addr", "localhost:8080", "server addr")
func main() {
gosh.InitChildMain()
flag.Parse()
lib.Get(*addr)
}