mirror of
https://github.com/fatedier/frp.git
synced 2025-05-14 03:08:26 +00:00
14 lines
332 B
JavaScript
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}
|