| // 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; | |
| }; |