blob: 5375851f4b0888f8eeff67500b71b31de0002814 [file] [log] [blame]
Adam Sadovsky85d8db42015-08-04 15:01:28 -07001// Copyright 2015 The Vanadium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
5// +build !mojo
6
7package internal
8
9import (
10 "os"
11
12 "v.io/x/ref/lib/flags"
13)
14
15func parseFlagsInternal(f *flags.Flags, config map[string]string) error {
16 return f.Parse(os.Args[1:], config)
17}