dbf46c4aa7
Admin server allows creating basic REST and html API-s for different administrative tasks. Change-Id: I3dc1786abe1c87350eed60ec90e48130f44e63cf
10 lines
210 B
Go
10 lines
210 B
Go
// Copyright (C) 2020 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package admin
|
|
|
|
import "github.com/zeebo/errs"
|
|
|
|
// Error is default error class for admin package.
|
|
var Error = errs.Class("admin")
|