mirror of
https://gitee.com/IrisVega/frp.git
synced 2024-11-01 22:31:29 +08:00
10 lines
193 B
Go
10 lines
193 B
Go
package framework
|
|
|
|
import (
|
|
clientsdk "github.com/fatedier/frp/pkg/sdk/client"
|
|
)
|
|
|
|
func (f *Framework) APIClientForFrpc(port int) *clientsdk.Client {
|
|
return clientsdk.New("127.0.0.1", port)
|
|
}
|