mirror of
https://github.com/CappielloAntonio/tempo.git
synced 2026-01-30 06:12:07 +00:00
Added SS system API
This commit is contained in:
@@ -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();
|
||||
}
|
||||
Reference in New Issue
Block a user