blob: e205ae76c22ba592b1edd709d7eeeddd9aecbe80 [file] [log] [blame] [edit]
// 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.ffx.test;
@discoverable
closed protocol Noop {
/// Does a noop.
strict DoNoop() -> ();
};
@discoverable
closed protocol Counter {
/// Adds one to the internal state.
strict AddOne() -> ();
/// Gets the internal state.
strict GetCount() -> (struct {
count uint64;
});
};