We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87a9700 commit dae5659Copy full SHA for dae5659
1 file changed
common/src/main/kotlin/com/lambda/module/modules/client/Network.kt
@@ -47,15 +47,15 @@ import java.util.*
47
48
object Network : Module(
49
name = "Network",
50
- description = "...",
+ description = "Lambda Authentication",
51
defaultTags = setOf(ModuleTag.CLIENT),
52
enabledByDefault = true,
53
) {
54
val authServer by setting("Auth Server", "auth.lambda-client.org")
55
val apiUrl by setting("API Server", "https://api.lambda-client.org")
56
val apiVersion by setting("API Version", ApiVersion.V1)
57
58
- private var auth: Authentication? = null // TODO: Cache
+ private var auth: Authentication? = null
59
private var deserialized: Data? = null
60
val accessToken: String
61
get() = auth?.accessToken ?: ""
0 commit comments