添加即时收款流程并对齐 Android
This commit is contained in:
@ -16,6 +16,7 @@ final class NetworkServices {
|
||||
let statisticsAPI: StatisticsAPI
|
||||
let orderAPI: OrderAPI
|
||||
let homeAPI: HomeAPI
|
||||
let paymentAPI: PaymentAPI
|
||||
let uploadAPI: UploadAPI
|
||||
let ossUploadService: OSSUploadService
|
||||
|
||||
@ -27,6 +28,7 @@ final class NetworkServices {
|
||||
statisticsAPI = StatisticsAPI(client: client)
|
||||
orderAPI = OrderAPI(client: client)
|
||||
homeAPI = HomeAPI(client: client)
|
||||
paymentAPI = PaymentAPI(client: client)
|
||||
uploadAPI = UploadAPI(client: client)
|
||||
ossUploadService = OSSUploadService(configService: uploadAPI)
|
||||
client.bindAuthTokenProvider {
|
||||
@ -43,6 +45,7 @@ final class NetworkServices {
|
||||
statisticsAPI = StatisticsAPI(client: apiClient)
|
||||
orderAPI = OrderAPI(client: apiClient)
|
||||
homeAPI = HomeAPI(client: apiClient)
|
||||
paymentAPI = PaymentAPI(client: apiClient)
|
||||
uploadAPI = UploadAPI(client: apiClient)
|
||||
ossUploadService = OSSUploadService(configService: uploadAPI)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user