mirror of
https://gitee.com/IrisVega/frp.git
synced 2024-11-01 22:31:29 +08:00
14 lines
121 B
Go
14 lines
121 B
Go
package consts
|
|
|
|
// server status
|
|
const (
|
|
Idle = iota
|
|
Working
|
|
)
|
|
|
|
// connection type
|
|
const (
|
|
CtlConn = iota
|
|
WorkConn
|
|
)
|