We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b1f4a7 commit 5136882Copy full SHA for 5136882
1 file changed
app/src/main/java/ai/elimu/content_provider/rest/ImagesService.kt
@@ -1,13 +1,10 @@
1
-package ai.elimu.content_provider.rest;
+package ai.elimu.content_provider.rest
2
3
-import java.util.List;
4
-
5
-import ai.elimu.model.v2.gson.content.ImageGson;
6
-import retrofit2.Call;
7
-import retrofit2.http.GET;
8
9
-public interface ImagesService {
+import ai.elimu.model.v2.gson.content.ImageGson
+import retrofit2.Call
+import retrofit2.http.GET
10
+interface ImagesService {
11
@GET("content/images")
12
- Call<List<ImageGson>> listImages();
+ fun listImages(): Call<List<ImageGson>>
13
}
0 commit comments