blob: 1d381b00377be17b9379ff67545b4cf97ea1972e [file] [log] [blame]
// Copyright 2019 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.session.examples;
/// A protocol which is used by an example element to ping the session it was
/// added to.
@discoverable
protocol ElementPing {
/// Sends a ping to the example session.
Ping();
};