Skip to content

Commit

Permalink
feature #13: MyService
Browse files Browse the repository at this point in the history
  • Loading branch information
hyeeum committed Dec 6, 2024
1 parent ad24c45 commit 0ca0bed
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions app/src/main/java/org/sopt/and/data/service/MyService.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package org.sopt.and.data.service

import org.sopt.and.data.dto.response.BaseResponse
import org.sopt.and.data.dto.response.ResponseUserHobbyDto
import retrofit2.http.GET

interface MyService {
@GET("/user/my-hobby")
suspend fun getUserHobby(): BaseResponse<ResponseUserHobbyDto>
}

0 comments on commit 0ca0bed

Please sign in to comment.