11 lines
172 B
Go
11 lines
172 B
Go
|
// Copyright (C) 2018 Storj Labs, Inc.
|
||
|
// See LICENSE for copying information.
|
||
|
|
||
|
package ranger
|
||
|
|
||
|
import (
|
||
|
"github.com/zeebo/errs"
|
||
|
)
|
||
|
|
||
|
var Error = errs.Class("ranger error")
|