change onpoint base url

This commit is contained in:
Sinh 2022-10-03 10:04:50 +07:00
parent 26390c4633
commit 7343221d5e
1 changed files with 3 additions and 2 deletions

View File

@ -1,7 +1,8 @@
package onpoint
const (
baseURLStaging = "https://dev-api.onpoint.vn"
baseURLStaging = "https://dev-selly-api.onpoint.vn"
baseURLProd = "https://selly-api.onpoint.vn"
apiPathCreateOrder = "/v1/orders"
apiPathUpdateDelivery = "/v1/orders/delivery/update"
@ -18,7 +19,7 @@ const (
var (
baseURLENVMapping = map[ENV]string{
// EnvProd: baseURLProd,
EnvProd: baseURLProd,
EnvStaging: baseURLStaging,
}
)