All Downloads are FREE. Search and download functionalities are using the official Maven repository.

fr.mmarie.core.gitlab.GitLabEndPoints Maven / Gradle / Ivy

package fr.mmarie.core.gitlab;

import fr.mmarie.api.gitlab.User;
import retrofit.Call;
import retrofit.http.GET;
import retrofit.http.Path;
import retrofit.http.Query;

public interface GitLabEndPoints {
    @GET("/api/v3/users/{id}")
    Call getUser(@Path("id") Long id, @Query("private_token") String privateToken);

    @GET("/api/v3/user")
    Call getLoggedUser(@Query("private_token") String privateToken);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy