e70da5cd4e
Change-Id: I2d2307e3fab87de47a72b3595d051e2c95ff4f8a
15 lines
376 B
Go
15 lines
376 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
|
|
)
|