Make qb.DESC of type qb.Order, not bool

This commit is contained in:
Drahflow
2022-02-10 23:46:50 +01:00
committed by Michal Jan Matczuk
parent 6ca5e2ae91
commit cee96feae9

View File

@@ -22,7 +22,7 @@ const (
// ASC is ascending order // ASC is ascending order
ASC Order = true ASC Order = true
// DESC is descending order // DESC is descending order
DESC = false DESC Order = false
) )
func (o Order) String() string { func (o Order) String() string {