API interface
package com.myapp.core.data.network; | |
interface AppAPI { | |
// other API interface | |
//POST Login user | |
@POST("user/login") | |
Call<LoginResponse> loginUser(@Body Login login); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment