15 lines
373 B
Go
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
|
||
|
)
|