storj/satellite/console/sortdirection.go
2019-09-12 17:19:30 +03:00

15 lines
373 B
Go

// Copyright (C) 2019 Storj Labs, Inc.
// See LICENSE for copying information.
package console
// OrderDirection is used for members in specific order direction
type OrderDirection uint8
const (
// Ascending indicates that we should order ascending
Ascending OrderDirection = 1
// Descending indicates that we should order descending
Descending OrderDirection = 2
)