Utility IRC bot
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Module.kt 294B

12345678910111213
  1. package com.chameth.hexbot.modules
  2. import com.dmdirc.ktirc.IrcClient
  3. import com.dmdirc.ktirc.events.IrcEvent
  4. import com.ufoscout.properlty.Properlty
  5. interface Module {
  6. fun init(settings: Properlty): Boolean
  7. suspend fun processEvent(client: IrcClient, event: IrcEvent)
  8. }