import sys
import os
sys.path.append(os.getcwd())

from health.utils.time_utils import get_current_time_str
print(f"Current Time (CST): {get_current_time_str()}")
