from utils.services import current_date, get_month_days


def meal_price_per_day(price_per_month, date = current_date()):
    days_in_month = get_month_days(date)
    print(days_in_month)
    return 0
