1
0
mirror of https://github.com/fatedier/frp.git synced 2025-03-10 13:50:10 +00:00
frp/test/e2e/framework/client.go
2020-06-02 22:48:55 +08:00

12 lines
148 B
Go

package framework
type FRPClient struct {
port int
}
func (f *Framework) FRPClient(port int) *FRPClient {
return &FRPClient{
port: port,
}
}