Because each timelog is a heart beat for the mind.
4X7O3IIIOLNFM7WIRFIQSA57Z5WBNN4ALXHLVEX6X5VAFH3NRYQAC @app.get("/heart/sounds")async def heart_status():last_beat = TimeLog(**serialize_from_document(TimeLogRepository.get_last()))if last_beat.is_beating():return {"isBeating": True,"project": last_beat.project_id,"since": last_beat.start,"so_far": last_beat.duration}else:return {"isBeating": False,"lastBeatOn": last_beat.project_id,"for": last_beat.duration}