package com.infinite.focus.server.googleapis.services.youtube;

import retrofit2.Call;
import retrofit2.http.GET;
import retrofit2.http.Query;

public interface YoutubeRepositoryInterface {

    static final String API_VERSION_SPEC = "youtube/v3/videos";

	@GET(API_VERSION_SPEC)
	Call<YouTubeVideoDetails> getYouTubeVideoDetailsByVideoId(
			@Query("part") String part,
			@Query("id") String video_id,
			@Query("key") String api_key);

}


