blob: 6962d2234977c52cff207f49cc7ef22f6d4670b7 [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.MaybeWatchParent()
flag.Parse()
lib.Get(*addr)
}