0
Fork 0
mirror of https://github.com/project-zot/zot.git synced 2025-01-06 22:40:28 -05:00
zot/pkg/extensions/search/cve/model/pagination.go

10 lines
112 B
Go
Raw Normal View History

package model
type SortCriteria string
type PageInput struct {
Limit int
Offset int
SortBy SortCriteria
}