blob: fd08c8d5234a77a96bafb1e319ce755299db6f9b [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.
// +build !ios
package factory
import (
"v.io/x/ref/lib/discovery"
"v.io/x/ref/lib/discovery/plugins/ble"
"v.io/x/ref/lib/discovery/plugins/mdns"
)
var pluginFactories = map[string]func(host string) (discovery.Plugin, error){
"mdns": mdns.New,
"ble": ble.NewPlugin,
}