frp/web/frpc/src/utils/status.js
2019-02-01 19:28:05 +08:00

14 lines
332 B
JavaScript

class ProxyStatus {
constructor(status) {
this.name = status.name
this.type = status.type
this.status = status.status
this.err = status.err
this.local_addr = status.local_addr
this.plugin = status.plugin
this.remote_addr = status.remote_addr
}
}
export {ProxyStatus}