| // Copyright 2019 The Fuchsia Authors. All rights reserved. | |
| // Use of this source code is governed by a BSD-style license that can be | |
| // found in the LICENSE file. | |
| library test.processbuilder; | |
| struct EnvVar { | |
| string key; | |
| string value; | |
| }; | |
| [Discoverable] | |
| protocol Util { | |
| GetArguments() -> (vector<string> args); | |
| GetEnvironment() -> (vector<EnvVar> vars); | |
| DumpNamespace() -> (string contents); | |
| ReadFile(string path) -> (string contents); | |
| }; |