3f38a7ed1e
Moving lib/uplink actually makes implementing the new library harder. Move the package back where it was. Change-Id: If758e897e3e56155a48ae82b23904cd8cdd72c13
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")
|
|
)
|