blob: b34a7d4a93b2efa6cceacf97c4b6d18ff3c1446a [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.
@available(added=HEAD)
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;
});
};