| // 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.nodegroup.test; | |
| using zx; | |
| // TODO(https://fxbug.dev/42064387): Wrap this protocol in a Service. | |
| @discoverable | |
| closed protocol Waiter { | |
| strict Ack(struct { | |
| status zx.Status; | |
| }); | |
| }; |