Added SS system API

This commit is contained in:
CappielloAntonio 2021-07-24 12:28:35 +02:00
parent d43b5a1a99
commit dea18cff31
2 changed files with 17 additions and 0 deletions

View file

@ -0,0 +1,4 @@
package com.cappielloantonio.play.subsonic.api.system;
public class SystemClient {
}

View file

@ -0,0 +1,13 @@
package com.cappielloantonio.play.subsonic.api.system;
import com.cappielloantonio.play.subsonic.models.SubsonicResponse;
import java.util.List;
import retrofit2.Call;
import retrofit2.http.GET;
public interface SystemService {
@GET("ping")
Call<List<SubsonicResponse>> ping();
}