[F] Fix hibernate enhance compilation

This commit is contained in:
Azalea
2024-11-20 22:29:45 -05:00
parent 10ebd61519
commit e32a2bbe81
161 changed files with 174 additions and 177 deletions

View File

@@ -0,0 +1,11 @@
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?
}