在Android中使用koin依赖注入库。我对创建接口实现器有疑问。
我的界面如下:
interface EnrollApiInterface {
@GET("person/templates/{id}")
fun yoonikEnroll(@Path("id") id: String) : Deferred<Response<ResponseBody>>
}
我正在尝试创建如下所示的实现器:
class EnrollApiInterfaceImp() : EnrollApiInterface{
@GET("person/templates/{id}")
override fun yoonikEnroll(@Path("id") id: String) : Deferred<Response<ResponseBody>>{
return
}
}
但我不知道我能在这里还什么?
1条答案
按热度按时间8oomwypt1#
看起来你正在为你的API接口使用retrofit,因此你必须使用retrofit builder:
更多信息请参见retrofit documentation。