mirror of
https://github.com/antebudimir/tempus.git
synced 2026-01-01 09:53:33 +00:00
Added SS system API
This commit is contained in:
parent
d43b5a1a99
commit
dea18cff31
2 changed files with 17 additions and 0 deletions
|
|
@ -0,0 +1,4 @@
|
||||||
|
package com.cappielloantonio.play.subsonic.api.system;
|
||||||
|
|
||||||
|
public class SystemClient {
|
||||||
|
}
|
||||||
|
|
@ -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();
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue