代码格式化

This commit is contained in:
binaryify
2020-09-12 10:20:25 +08:00
parent 0ae2628fb6
commit 4f7266e4a5
146 changed files with 603 additions and 449 deletions

View File

@ -5,16 +5,16 @@ const path = require('path')
async function main() {
const result = await login_cellphone({
phone: '手机号',
password: '密码'
password: '密码',
})
const filePath = './test.jpg'
await avatar_upload({
imgFile: {
name: path.basename(filePath),
data: fs.readFileSync(filePath)
data: fs.readFileSync(filePath),
},
imgSize: 1012, //图片尺寸,需要正方形图片
cookie: result.body.cookie
cookie: result.body.cookie,
})
}
main()
main()