blob: a88f1b11689ded42b3547a1d0fa6ee4525a4e47a [file] [log] [blame]
// Copyright 2022 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.composite.test;
using zx;
@discoverable
protocol Waiter {
Ack(struct {
status zx.status;
});
};
protocol Device {
GetNumber() -> (struct {
number uint32;
});
};
service Service {
device client_end:Device;
};