feat: 添加 is_adult 字段处理,更新配置以支持成人内容源

This commit is contained in:
katelya
2025-09-05 00:36:55 +08:00
parent af192b35ed
commit b9c59a3066
3 changed files with 26 additions and 1 deletions
+17
View File
@@ -0,0 +1,17 @@
{
"cache_time": 7200,
"api_site": {
"example_test": {
"api": "https://example.com/api.php/provide/vod",
"name": "示例视频源",
"detail": "https://example.com",
"is_adult": false
},
"adult_example": {
"api": "https://adult-example.com/api.php/provide/vod",
"name": "成人内容源(仅供示例)",
"detail": "https://adult-example.com",
"is_adult": true
}
}
}