Rename MessagesEntryPointNode to MessagesEntryPoint.NodeProxy for consistency. We already have a NodeProxy.

This commit is contained in:
Benoit Marty 2025-10-31 15:02:26 +01:00 committed by Benoit Marty
parent 0bed2ae386
commit 876f692f3f
3 changed files with 5 additions and 8 deletions

View file

@ -47,8 +47,8 @@ interface MessagesEntryPoint : FeatureEntryPoint {
params: Params,
callback: Callback,
): Node
}
interface MessagesEntryPointNode {
suspend fun attachThread(threadId: ThreadId, focusedEventId: EventId?)
interface NodeProxy {
suspend fun attachThread(threadId: ThreadId, focusedEventId: EventId?)
}
}