Adam Sadovsky | 85d8db4 | 2015-08-04 15:01:28 -0700 | [diff] [blame] | 1 | // 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 | |||||
7 | package internal | ||||
8 | |||||
9 | import ( | ||||
10 | "os" | ||||
11 | |||||
12 | "v.io/x/ref/lib/flags" | ||||
13 | ) | ||||
14 | |||||
15 | func parseFlagsInternal(f *flags.Flags, config map[string]string) error { | ||||
16 | return f.Parse(os.Args[1:], config) | ||||
17 | } |