-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.example.ts
39 lines (37 loc) · 1.1 KB
/
config.example.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import { addStudent } from '@/student.ts';
import { scoreWatcher } from '@/watchers/scoreWatcher.ts';
import { scheduleWatcher } from '@/watchers/scheduleWatcher.ts';
// 添加用户
await addStudent({
// 学号
username: '234567890',
// 密码(base64后)
password: 'cGEzM3cwcmQ=',
// HTTP Post 地址(可选)
post: 'http://127.0.0.1:5701/send_private_msg?user_id=11451419&message=',
// 通知函数(可选),和 Post 地址二选一(同时存在时只使用 notify)
// notify: (msg: string) => {
// console.log(msg);
// },
// 要监控的项目
watcher: [
// 成绩监控
scoreWatcher({
// 学年
academicYear: '2024',
// 学期
semester: '3',
// 是否展示具体分数
showScore: true,
}),
// 课程表监控(适用于一轮选课后)
scheduleWatcher({
// 学年
academicYear: '2024',
// 学期
semester: '4',
}),
],
});
// 可以添加多个用户
// await addStudent({...