You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
289 B
19 lines
289 B
1 year ago
|
/**
|
||
|
* 基于Bot跟Machete的TaJian对接
|
||
|
* 按filestie.io标准把Bot爬虫返回的数据格式化保存为.url及其说明文件
|
||
|
*/
|
||
|
|
||
|
class TaJian {
|
||
|
|
||
|
constructor(data_save_dir) {
|
||
|
this.save_dir = data_save_dir;
|
||
|
}
|
||
|
|
||
|
async saveUrlShortcut(data) {
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
export default TaJian;
|