We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8be01f0 commit 94f1300Copy full SHA for 94f1300
data/src/main/java/com/threegap/bitnagil/data/recommendroutine/service/RecommendRoutineService.kt
@@ -11,5 +11,7 @@ interface RecommendRoutineService {
11
suspend fun fetchRecommendRoutines(): BaseResponse<RecommendRoutinesDto>
12
13
@GET("/api/v1/recommend-routines/{recommendedRoutineId}")
14
- suspend fun getRecommendRoutine(@Path("recommendedRoutineId") recommendedRoutineId: Int): BaseResponse<RecommendedRoutineDto>
+ suspend fun getRecommendRoutine(
15
+ @Path("recommendedRoutineId") recommendedRoutineId: Int,
16
+ ): BaseResponse<RecommendedRoutineDto>
17
}
0 commit comments