com.github.zhujk.resp.converter.DefaultRespConverter.kt Maven / Gradle / Ivy
package com.github.zhujk.resp.converter
import com.github.zhujk.resp.core.Resp
class DefaultRespConverter : RespConverter> {
override fun convert(status: Int, msg: String, data: Any?, throwable: Throwable?): Resp {
return Resp(status, msg, data)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy