blob: 884c11c4f61788b33577db96efa33e93ac862153 [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 fuchsia.overnet;
[Discoverable]
interface Overnet {
1: ListPeers() -> (vector<Peer> peers);
};
struct Peer {
uint64 id;
};