blob: c87022bd4506cedf1c39fec533a0d5bcc09d232c [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;
using zx;
/// Protocol for providing the root resource.
@discoverable
closed protocol RootResource {
/// Get the root `resource`.
strict Get() -> (resource struct {
resource zx.Handle:RESOURCE;
});
};