storj/lib/uplink/common.go

10 lines
215 B
Go
Raw Normal View History

// Copyright (C) 2018 Storj Labs, Inc.
// See LICENSE for copying information.
package uplink
// APIKey is an interface for authenticating with the Satellite
type APIKey interface {
Serialize() ([]byte, error)
}