package io.delphiplatform.api.util.service;

import java.time.LocalDate;
import java.time.LocalDateTime;

public interface CurrentDateService {

    LocalDate getCurrentDate();

    LocalDateTime getCurrentDateTime();
}
