mirror of
https://github.com/fatedier/frp.git
synced 2025-01-24 01:36:15 +07: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
|
|
)
|