Initial release
Build and Push Docker Image / build (push) Successful in 17s

This commit is contained in:
Stardream
2026-06-16 19:26:32 +10:00
commit e3bf77296c
142 changed files with 5481 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
'use strict';
// Subject types in the order the sync iterates them.
const SUBJECT_TYPES = [2, 1, 4, 3, 6];
// Collection types: 1 想看 / 2 看过 / 3 在看 / 4 搁置 / 5 抛弃.
const COLLECTION_TYPES = [1, 2, 3, 4, 5];
const STATUS = { 0: '全部', 1: '想看', 2: '看过', 3: '在看', 4: '搁置', 5: '抛弃', 99: '安全箱' };
const SUBJECT_LABEL = { 1: '书籍', 2: '动画', 3: '音乐', 4: '游戏', 6: '三次元' };
module.exports = { SUBJECT_TYPES, COLLECTION_TYPES, STATUS, SUBJECT_LABEL };