go1.25 bumped lib version added in dotenv assign func

This commit is contained in:
2025-09-18 23:22:39 +05:30
parent 2c1ceed904
commit ae4020fdcf
11 changed files with 127 additions and 53 deletions

View File

@@ -14,13 +14,16 @@ import (
)
type Pager struct {
Search string
OrderBy *string `json:"orderBy"`
OrderAsc *bool `json:"orderAsc"`
Page int `json:"page"`
Size int `json:"size"`
Total int `json:"total"`
TotalNeeded bool `json:"-"`
OrderBy *string `json:"orderBy"`
OrderAsc *bool `json:"orderAsc"`
Search string
Page int `json:"page"`
Size int `json:"size"`
Total int `json:"total"`
TotalNeeded bool `json:"-"`
}
func (i *Pager) HasSearch() bool {