package bluetooth import ( "fmt" "github.com/currantlabs/ble" "github.com/spf13/viper" ) // GetDescription returns a description given a Bluetooth address func GetDescription(address ble.Addr) string { return viper.GetString(fmt.Sprintf("bluetooth.%s.description", address)) }