Skip to content

Commit

Permalink
fix: make config public
Browse files Browse the repository at this point in the history
  • Loading branch information
d1snin committed Jun 23, 2024
1 parent b284427 commit cd8cc5a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ import dev.d1s.beam.client.BeamClient

public class ApplicationContext internal constructor(
internal val client: BeamClient,
internal val config: ApplicationConfig
public val config: ApplicationConfig
) : BeamClient by client
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public class BlockContext internal constructor(
initialBlock: Block,
private val manage: Boolean,
internal val client: BeamClient,
internal val config: ApplicationConfig
public val config: ApplicationConfig
) {
private var internalBlock = initialBlock

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ private val log = logging()
public open class SpaceContext internal constructor(
initialSpace: Space,
internal val client: BeamClient,
internal val config: ApplicationConfig
public val config: ApplicationConfig
) {
private var internalSpace = initialSpace

Expand Down

0 comments on commit cd8cc5a

Please sign in to comment.