Skip to content

Commit

Permalink
feat : 날짜와 관련된 부분을 추상화
Browse files Browse the repository at this point in the history
  • Loading branch information
packdev937 committed Oct 11, 2023
1 parent 3744176 commit 07f97b6
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/main/java/com/umc/yourweather/domain/DateProvider.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package com.umc.yourweather.domain;

import java.time.LocalDate;

public interface DateProvider {
public LocalDate getToday();
public LocalDate getOneWeekAgo();
}

0 comments on commit 07f97b6

Please sign in to comment.