blob: 03626f6f4a55076eb2994fe10fbc4cc9f442e4a5 [file] [log] [blame]
// Copyright 2023 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.
@available(added=HEAD)
library fuchsia.runtime.composite.test;
using zx;
@discoverable
@transport("Driver")
closed protocol RuntimeCompositeProtocol {
strict Handshake() -> () error zx.Status;
};
service Service {
runtime_composite_protocol client_end:RuntimeCompositeProtocol;
};