We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Before
interface ApiService { @GET("success") suspend fun getSuccess(): ApiResult<Success<Any>> @GET("failure") suspend fun getFailure(): ApiResult<Success<Any>> }
After
interface ApiService { @GET("success") suspend fun getSuccess(): ApiResult<User> @GET("failure") suspend fun getFailure(): ApiResult<Room> }
위 형태로 변경하는 것이 목표입니다.
The text was updated successfully, but these errors were encountered:
[#37] Retrofit CallAdapter, Gson Converter 커스텀
f5a60d7
- 리모트 푸시를 위한 커밋
heechokim
No branches or pull requests
배경
내용
위 형태로 변경하는 것이 목표입니다.
참고 자료
The text was updated successfully, but these errors were encountered: