blob: f5d3250a66e47b1dd3c59c7a731b94d53b006d78 [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 fuchsia.boot;
/// Protocol for providing the root resource.
[Discoverable, Layout = "Simple"]
protocol RootResource {
/// Get the root |resource|. This can only be done once, subsequent calls
/// will close the channel.
Get() -> (handle<resource> resource);
};