blob: ee848209f02fd43aaf78ec58a43beb015ca01c96 [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
// +build !android
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,
}