forked from Cookies_Github_mirror/AquaDX
12 lines
281 B
Kotlin
12 lines
281 B
Kotlin
package icu.samnyan.aqua.sega.general
|
|
|
|
import com.fasterxml.jackson.core.JsonProcessingException
|
|
|
|
/**
|
|
* @author samnyan (privateamusement@protonmail.com)
|
|
*/
|
|
fun interface BaseHandler {
|
|
@Throws(JsonProcessingException::class)
|
|
fun handle(request: Map<String, Any>): Any?
|
|
}
|