package repository const ORDERING_ASC = "asc" const ORDERING_DESC = "desc" type Ordering struct { Field string Direction string } func NewOrdering(field string, direction string) Ordering { return Ordering{ Field: field, Direction: direction, } }