(id)
| 2 | const db = require('./db'); |
| 3 | module.exports = class { |
| 4 | constructor(id) { |
| 5 | this.info = db('account').find({ id: id }).value() |
| 6 | } |
| 7 | |
| 8 | // 登录 |
| 9 | async login(refresh_token) { |
nothing calls this directly
no outgoing calls
no test coverage detected