mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-08 12:01:20 +00:00
9 lines
72 B
Go
9 lines
72 B
Go
|
package order
|
||
|
|
||
|
type By bool
|
||
|
|
||
|
const (
|
||
|
Asc By = true
|
||
|
Desc By = false
|
||
|
)
|