blob: 884c3d571dd924889b9186b8de2a4a76d9664ced [file] [log] [blame]
// Copyright 2018 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 fidl.examples.events;
protocol AnimalPlanet {
Dog(string s, bool b);
Cat(string s) -> (bool b);
-> Bird(string s, bool b);
};