Hero scripts of machete.
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.

20 lines
339 B

/**
* 基于Bot跟Machete的TaJian对接
* 按filestie.io标准把Bot爬虫返回的数据格式化保存为.url及其说明文件
*/
class TaJian {
constructor(data_save_dir) {
this.save_dir = data_save_dir;
}
async saveUrlShortcut(data) {
console.log('TaJian try to save data', data);
}
}
export default TaJian;