Skip to content

Commit

Permalink
[chore] #19 ktlintFormat
Browse files Browse the repository at this point in the history
  • Loading branch information
jihyunniiii committed Jun 3, 2024
1 parent b7ffa3d commit 9948320
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ package com.dongguk.telepigeon.domain.model

data class MonthlyReportModel(
val positiveKeywords: List<String>,
val negativeKeywords: List<String>
)
val negativeKeywords: List<String>,
)
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,7 @@ import com.dongguk.telepigeon.core.design.system.R
import com.dongguk.telepigeon.feature.databinding.FragmentCalendarBinding
import com.dongguk.telpigeon.core.ui.base.BindingFragment
import com.dongguk.telpigeon.core.ui.util.fragment.stringOf
import java.time.Instant
import java.time.LocalDate
import java.time.ZoneId

class CalendarFragment : BindingFragment<FragmentCalendarBinding>({ FragmentCalendarBinding.inflate(it) }) {
private val calendarViewModel by viewModels<CalendarViewModel>()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,11 @@ import javax.inject.Inject

@HiltViewModel
class MonthlyReportViewModel
@Inject
constructor() : ViewModel() {
val dummyMonthlyReportModel : MonthlyReportModel? = MonthlyReportModel(
positiveKeywords = listOf("운동", "-", "-"),
negativeKeywords = listOf("건강", "-", "-")
)
}
@Inject
constructor() : ViewModel() {
val dummyMonthlyReportModel: MonthlyReportModel? =
MonthlyReportModel(
positiveKeywords = listOf("운동", "-", "-"),
negativeKeywords = listOf("건강", "-", "-"),
)
}

0 comments on commit 9948320

Please sign in to comment.