storj/satellite/console/sortdirection.go
Egon Elbre e70da5cd4e all: fix comments
Change-Id: I2d2307e3fab87de47a72b3595d051e2c95ff4f8a
2020-07-16 19:13:14 +03:00

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
)