blob: 6444906f8288d76cc7df381d10410331b3547a80 [file] [log] [blame]
// Copyright 2024 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.runtime.microbenchmarks;
using zx;
/// A fake FIDL device server for testing microbenchmarks against.
@transport("Driver")
closed protocol Device {
/// Replies immediately with an empty response.
strict Handshake() -> () error zx.Status;
};