1
0
mirror of https://github.com/fatedier/frp.git synced 2025-05-19 05:58:26 +00:00

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)
}