blob: 12c76c22ce8eee8230e14d727248a429a7d301ff [file] [log] [blame]
// Copyright 2021 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.offers.test;
@discoverable
closed protocol Handshake {
strict Do() -> ();
};
service Service {
device client_end:Handshake;
};
@discoverable
closed protocol Waiter {
strict Ack();
};