client.go 148 B

1234567891011
  1. package framework
  2. type FRPClient struct {
  3. port int
  4. }
  5. func (f *Framework) FRPClient(port int) *FRPClient {
  6. return &FRPClient{
  7. port: port,
  8. }
  9. }