mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-06-24 02:00:24 +07:00
11 lines
383 B
Kotlin
11 lines
383 B
Kotlin
|
|
package org.amnezia.vpn
|
||
|
|
|
||
|
|
import android.app.Activity
|
||
|
|
import android.content.Context
|
||
|
|
|
||
|
|
class BillingPaymentRepository(@Suppress("UNUSED_PARAMETER") context: Context) : BillingRepository {
|
||
|
|
override suspend fun getCountryCode(): String = ""
|
||
|
|
override suspend fun getSubscriptionPlans(): String = ""
|
||
|
|
override suspend fun purchaseSubscription(activity: Activity): String = ""
|
||
|
|
}
|