mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-14 23:17:33 +08:00
10 lines
315 B
Go
10 lines
315 B
Go
package errs
|
|
|
|
import "net/http"
|
|
|
|
// Error codes related to overview
|
|
var (
|
|
ErrQueryItemsEmpty = NewNormalError(NormalSubcategoryOverview, 0, http.StatusBadRequest, "query items cannot be empty")
|
|
ErrQueryItemsTooMuch = NewNormalError(NormalSubcategoryOverview, 1, http.StatusBadRequest, "query items too much")
|
|
)
|