Skip to content

Commit

Permalink
refactor: MedicalRecordRepositoryImpl 함수 매개변수 콤마 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
nueijeel committed Apr 27, 2024
1 parent 13eee69 commit 0a4222d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class MedicalRecordRepositoryImpl

override suspend fun addMedicalRecord(
accessToken: String?,
medicalRecordDto: MedicalRecordDto
medicalRecordDto: MedicalRecordDto,
): Int {
val response =
medicalRecordRetrofitClient.medicalRecordApi.addMedicalRecord(
Expand All @@ -87,7 +87,7 @@ class MedicalRecordRepositoryImpl

override suspend fun putMedicalRecord(
accessToken: String?,
medicalRecordPutDto: MedicalRecordPutDto
medicalRecordPutDto: MedicalRecordPutDto,
): Int {
val response =
medicalRecordRetrofitClient.medicalRecordApi.putMedicalRecord(
Expand Down

0 comments on commit 0a4222d

Please sign in to comment.