blob: 5375851f4b0888f8eeff67500b71b31de0002814 [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.
// +build !mojo
package internal
import (
"os"
"v.io/x/ref/lib/flags"
)
func parseFlagsInternal(f *flags.Flags, config map[string]string) error {
return f.Parse(os.Args[1:], config)
}