6098f606a2
Setup aliases in lib/uplink and set uplink as the default. Change-Id: Ic06b5f3d59fe402faaed2143fdf4b2314e3d06b9
17 lines
308 B
Go
17 lines
308 B
Go
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package uplink
|
|
|
|
import (
|
|
"github.com/zeebo/errs"
|
|
monkit "gopkg.in/spacemonkeygo/monkit.v2"
|
|
)
|
|
|
|
var (
|
|
mon = monkit.Package()
|
|
|
|
// Error is the toplevel class of errors for the uplink library.
|
|
Error = errs.Class("libuplink")
|
|
)
|