storj/satellite/nodeselection/common.go
Egon Elbre 94a09ce20b all: add missing dots
Change-Id: I93b86c9fb3398c5d3c9121b8859dad1c615fa23a
2020-08-11 17:50:01 +03:00

17 lines
354 B
Go

// Copyright (C) 2020 Storj Labs, Incache.
// See LICENSE for copying information.
// Package nodeselection implements node selection logic.
package nodeselection
import (
"github.com/spacemonkeygo/monkit/v3"
"github.com/zeebo/errs"
)
var (
mon = monkit.Package()
// Error represents an nodeselection error.
Error = errs.Class("nodeselection")
)