We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 514c38a commit 76ef43cCopy full SHA for 76ef43c
src/commonMain/kotlin/com.adamratzman.spotify/utils/Platform.kt
@@ -1,6 +1,9 @@
1
/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2020; Original author: Adam Ratzman */
2
package com.adamratzman.spotify.utils
3
4
+/**
5
+ * Actual platforms that this program can be run on.
6
+ */
7
public enum class Platform {
8
JVM,
9
ANDROID,
src/jvmMain/kotlin/com/adamratzman/spotify/utils/Platform.kt
@@ -1,4 +1,7 @@
+ * The actual platform that this program is running on.
public actual val platform: Platform = Platform.JVM
0 commit comments