9 lines
253 B
Kotlin
9 lines
253 B
Kotlin
package tech.xvanturing.freeproxy.vpn
|
|
|
|
import tech.xvanturing.freeproxy.vpn.net.SessionKey
|
|
|
|
/** App attribution is intentionally disabled in the lightweight build. */
|
|
class AppResolver {
|
|
fun resolve(protocol: Int, key: SessionKey): String? = null
|
|
}
|