blob: 33a50f320214093324cd9abcbae080075b0b0aa0 [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.
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;
};