blob: 91ec50e6237525f02f523e4ce0f72cf930ec7565 [file] [log] [blame]
// Copyright 2015 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package proximity
type Device struct {
Distance int64
Names []string
Mac string
}
type ProximityScanner interface {
NearbyDevices() ([]Device | error)
}