mirror of
https://github.com/AynaLivePlayer/miaosic.git
synced 2025-12-06 21:12:49 +08:00
9 lines
122 B
Go
9 lines
122 B
Go
package providers
|
|
|
|
func CheckPageParam(page, size int) bool {
|
|
if page < 1 || size < 1 {
|
|
return false
|
|
}
|
|
return true
|
|
}
|