blob: 5f2c23ecebf192b5385dc14c98ccfc45c7e7c8b3 [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 location
type LatLng struct {
Lat, Lng float64
}
type Location interface {
Get() (LatLng | error)
}