integrate-onpoint #5

Merged
sinhluu merged 15 commits from integrate-onpoint into master 2022-10-31 09:36:25 +00:00
1 changed files with 3 additions and 2 deletions
Showing only changes of commit 7343221d5e - Show all commits

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,
}
)