mirror of
https://github.com/Shabinder/SpotiFlyer.git
synced 2024-11-26 18:34:32 +01:00
10 lines
245 B
Kotlin
10 lines
245 B
Kotlin
package com.shabinder.common.models
|
|
|
|
import kotlin.native.concurrent.AtomicReference
|
|
|
|
actual interface PlatformActions
|
|
|
|
actual val StubPlatformActions = object : PlatformActions {}
|
|
|
|
actual typealias NativeAtomicReference<T> = AtomicReference<T>
|