diff --git a/httpserver/src/main/kotlin/tbdex/sdk/httpserver/TbdexHttpServer.kt b/httpserver/src/main/kotlin/tbdex/sdk/httpserver/TbdexHttpServer.kt index 6d26463a..68017691 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) { - internal val callbacks = Callbacks() + val callbacks = Callbacks() private var embedded = embeddedServer(Netty, port = config.port) { configure(this) }