#!/usr/bin/env python3
from datetime import date
from health.utils.time_utils import get_cst_today, get_cst_now

print(f"date.today() (local system time): {date.today()}")
print(f"get_cst_now(): {get_cst_now()}")
print(f"get_cst_today(): {get_cst_today()}")
