blob: b3a9c3be4835049810d946735acd69c2a1faabba [file] [log] [blame]
// 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);
};