blob: 67b433fcf7d671cfa490882f2639fc6bd2a17d4f [file] [log] [blame]
// Copyright 2016 The Upspin 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 transports is a helper package that aggregates the user imports.
// It is meant to be imported, using an "underscore" import, as a convenient
// way to link with all the transport implementations.
package transports // import "upspin.io/key/transports"
import (
"upspin.io/bind"
"upspin.io/key/inprocess"
"upspin.io/key/usercache"
"upspin.io/upspin"
_ "upspin.io/key/remote"
_ "upspin.io/key/unassigned"
)
func init() {
bind.RegisterKeyServer(upspin.InProcess, usercache.Global(inprocess.New()))
}