blob: 461158453fb50639ab695ef47a4d846bdeb0c95b [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.compat.runtime.test;
closed protocol Leaf {
strict GetString() -> (struct {
response string:MAX;
});
};
@discoverable
@transport("Driver")
closed protocol Root {
strict GetString() -> (struct {
response string:MAX;
});
};
service Service {
root client_end:Root;
};
@discoverable
closed protocol Waiter {
strict Ack();
};