mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-21 17:21:09 +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
105 B
Go
7 lines
105 B
Go
package entity
|
|
|
|
type Sort struct {
|
|
Key string `json:"key"`
|
|
Direction string `json:"direction"`
|
|
}
|