Skip to content

Commit dae5659

Browse files
committed
Added module description
1 parent 87a9700 commit dae5659

File tree

1 file changed

+2
-2
lines changed
  • common/src/main/kotlin/com/lambda/module/modules/client

1 file changed

+2
-2
lines changed

common/src/main/kotlin/com/lambda/module/modules/client/Network.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,15 @@ import java.util.*
4747

4848
object Network : Module(
4949
name = "Network",
50-
description = "...",
50+
description = "Lambda Authentication",
5151
defaultTags = setOf(ModuleTag.CLIENT),
5252
enabledByDefault = true,
5353
) {
5454
val authServer by setting("Auth Server", "auth.lambda-client.org")
5555
val apiUrl by setting("API Server", "https://api.lambda-client.org")
5656
val apiVersion by setting("API Version", ApiVersion.V1)
5757

58-
private var auth: Authentication? = null // TODO: Cache
58+
private var auth: Authentication? = null
5959
private var deserialized: Data? = null
6060
val accessToken: String
6161
get() = auth?.accessToken ?: ""

0 commit comments

Comments
 (0)