mirror of
https://gitee.com/IrisVega/frp.git
synced 2024-11-01 22:31:29 +08:00
12 lines
148 B
Go
12 lines
148 B
Go
|
package framework
|
||
|
|
||
|
type FRPClient struct {
|
||
|
port int
|
||
|
}
|
||
|
|
||
|
func (f *Framework) FRPClient(port int) *FRPClient {
|
||
|
return &FRPClient{
|
||
|
port: port,
|
||
|
}
|
||
|
}
|