blob: a959ace5eb1b11cf95f36f2c9911c733f6807596 [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 banjo.examples.events;
interface AnimalPlanet {
Dog(string s, bool b);
Cat(string s) -> (bool b);
-> Bird(string s, bool b);
};