mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-22 17:31:03 +01:00
- Updated DESCENDING constant from "dsc" to "desc" for clarity and consistency. - Changed JSON annotation for Direction field in Sort struct from "d" to "direction" to improve readability and maintainability. - Ensured alignment with existing coding standards and practices across the codebase.
7 lines
70 B
Go
7 lines
70 B
Go
package constants
|
|
|
|
const (
|
|
ASCENDING = "asc"
|
|
DESCENDING = "desc"
|
|
)
|