status.js 332 B

12345678910111213
  1. class ProxyStatus {
  2. constructor(status) {
  3. this.name = status.name
  4. this.type = status.type
  5. this.status = status.status
  6. this.err = status.err
  7. this.local_addr = status.local_addr
  8. this.plugin = status.plugin
  9. this.remote_addr = status.remote_addr
  10. }
  11. }
  12. export {ProxyStatus}