mirror of
https://github.com/wgh136/nysoure.git
synced 2025-09-27 04:17:23 +00:00
13 lines
155 B
Go
13 lines
155 B
Go
package model
|
|
|
|
type RSort uint8
|
|
|
|
const (
|
|
RSortTimeAsc RSort = iota
|
|
RSortTimeDesc
|
|
RSortViewsAsc
|
|
RSortViewsDesc
|
|
RSortDownloadsAsc
|
|
RSortDownloadsDesc
|
|
)
|