diff --git a/httpserver/src/main/kotlin/tbdex/sdk/httpserver/TbdexHttpServer.kt b/httpserver/src/main/kotlin/tbdex/sdk/httpserver/TbdexHttpServer.kt index e507f9a2..6d26463a 100644 --- a/httpserver/src/main/kotlin/tbdex/sdk/httpserver/TbdexHttpServer.kt +++ b/httpserver/src/main/kotlin/tbdex/sdk/httpserver/TbdexHttpServer.kt @@ -61,7 +61,7 @@ class TbdexHttpServerConfig( * @property config The configuration for the server, including port and optional APIs. */ class TbdexHttpServer(private val config: TbdexHttpServerConfig) { - private val callbacks = Callbacks() + internal val callbacks = Callbacks() private var embedded = embeddedServer(Netty, port = config.port) { configure(this) }