mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-14 06:57:35 +08:00
9 lines
216 B
Go
9 lines
216 B
Go
package errs
|
|
|
|
import "net/http"
|
|
|
|
// Error codes related to map image proxy
|
|
var (
|
|
ErrMapProviderNotCurrent = NewNormalError(NormalSubcategoryMapProxy, 0, http.StatusBadRequest, "specified map provider is not set")
|
|
)
|