diff --git a/src/main/kotlin/com/shr4pnel/ferretirc/net/messages/MessageIO.kt b/src/main/kotlin/com/shr4pnel/ferretirc/net/messages/MessageIO.kt index e9ef863..b29d5b7 100644 --- a/src/main/kotlin/com/shr4pnel/ferretirc/net/messages/MessageIO.kt +++ b/src/main/kotlin/com/shr4pnel/ferretirc/net/messages/MessageIO.kt @@ -2,11 +2,10 @@ package com.shr4pnel.ferretirc.net.messages import io.ktor.network.sockets.Socket import kotlinx.coroutines.CoroutineScope -import kotlinx.coroutines.Job import kotlinx.coroutines.channels.Channel abstract class MessageIO(val socket: Socket, val scope: CoroutineScope) { val incomingMessages = Channel(Channel.BUFFERED) val outgoingMessages = Channel(Channel.BUFFERED) - abstract fun start(): Job + abstract fun start(): Any } \ No newline at end of file