Skip to content

Commit

Permalink
feat:remove invalid code
Browse files Browse the repository at this point in the history
  • Loading branch information
adam authored and adam committed Jan 4, 2024
1 parent 863126c commit 99bd586
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions adapters/zmaticoo/zmaticoo.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ import (
"net/url"
)

var (
endPoint = "https://bid.zmaticoo.com/prebid/bid"
)

type adapter struct {
endpoint string
}
Expand All @@ -26,9 +22,6 @@ func Builder(bidderName openrtb_ext.BidderName, config config.Adapter, server co
if err != nil {
return nil, fmt.Errorf("invalid endpoint: %v", err)
}
if endpointURL.String() != endPoint {
return nil, fmt.Errorf("invalid endpoint: %v", err)
}
bidder := &adapter{
endpoint: endpointURL.String(),
}
Expand Down

0 comments on commit 99bd586

Please sign in to comment.