Skip to content

Instantly share code, notes, and snippets.

@aemxn
Created August 23, 2017 14:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aemxn/c93d060d1f3f320f33fb6a3622456cec to your computer and use it in GitHub Desktop.
Save aemxn/c93d060d1f3f320f33fb6a3622456cec to your computer and use it in GitHub Desktop.
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