Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: 쪽지 관련 공통 코드 작성 #450

Merged
merged 12 commits into from
Oct 12, 2023
Prev Previous commit
Next Next commit
refactor: 자료형 변경
krrong committed Oct 12, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 2738b5de97e50d0f8acf2921152e09dd10d42c3d
Original file line number Diff line number Diff line change
@@ -18,8 +18,8 @@ interface LetterService {

@GET("/letters/nearby")
suspend fun getNearbyLetters(
@Query("latitude") latitude: String,
@Query("longitude") longitude: String,
@Query("latitude") latitude: Double,
@Query("longitude") longitude: Double,
): Response<List<ClosedLetterDto>>

@GET("/letters/{letterId}")