Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Balint (0.4 sec)

  1. cmd/endpoint.go

    		endpoint, err := NewEndpoint(arg)
    		if err != nil {
    			return nil, fmt.Errorf("'%s': %s", arg, err.Error())
    		}
    
    		// All endpoints have to be same type and scheme if applicable.
    		//nolint:gocritic
    		if i == 0 {
    			endpointType = endpoint.Type()
    			scheme = endpoint.Scheme
    		} else if endpoint.Type() != endpointType {
    			return nil, fmt.Errorf("mixed style endpoints are not supported")
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Apr 21 11:43:18 GMT 2024
    - 34.1K bytes
    - Viewed (0)
Back to top