#!/bin/bash

current_time=$(date -u +%s)

# FET-158: 2026-06-16T23:04:32Z -> todo 状态
fet158_time=$(date -u -d "2026-06-16T23:04:32Z" +%s)
fet158_diff_hours=$(( (current_time - fet158_time) / 3600 ))

# FET-144: 2026-06-16T06:05:14Z -> in_progress 状态
fet144_time=$(date -u -d "2026-06-16T06:05:14Z" +%s)
fet144_diff_hours=$(( (current_time - fet144_time) / 3600 ))

echo "FET-158 (todo): 最后更新距今 ${fet158_diff_hours} 小时"
echo "FET-144 (in_progress): 最后更新距今 ${fet144_diff_hours} 小时"
