blob: 09d7a030c839493abd2bc0f77f56f817c1f4ff1f [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;
interface AnimalPlanet {
1: Dog(string s, bool b);
2: Cat(string s) -> (bool b);
3: -> Bird(string s, bool b);
};