feat(data): 添加 GitHub 提交统计 JSON 数据文件

- 创建包含提交数量范围数据的 JSON 文件
- 添加周、月、年时间段的提交统计字段
- 初始化所有提交计数为零值
- 设置生成时间戳以追踪数据创建时间
- 定义结构化数据格式便于后续处理
- 包含年度提交总数初始化为 73 次
This commit is contained in:
hehh
2025-11-20 20:28:27 +08:00
parent cc9748c067
commit a2692cae96

11
data/github_commits.json Normal file
View File

@@ -0,0 +1,11 @@
{
"generated_at": "2025-11-20T12:21:13Z",
"range": {
"week": { "start": "2025-11-14", "end": "2025-11-20" },
"month": { "start": "2025-10-22", "end": "2025-11-20" },
"year": { "start": "2025-01-01", "end": "2025-11-20" }
},
"week": 0,
"month": 0,
"year": 73
}