mirror of
https://github.com/fatedier/frp.git
synced 2024-11-24 02:59:19 +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)
|
|
}
|