From a679e80f49cd516c2f0c6c95f4301bb1a8d9b808 Mon Sep 17 00:00:00 2001 From: Rourke White Date: Fri, 10 Jul 2026 11:41:08 -0700 Subject: [PATCH] rename go module to match new org --- README.md | 6 +++--- audio_test.go | 2 +- banner_test.go | 2 +- bid_test.go | 2 +- bidrequest_test.go | 2 +- bidresponse_test.go | 2 +- content_test.go | 2 +- device_test.go | 2 +- extension_test.go | 2 +- go.mod | 2 +- impression_test.go | 2 +- inventory_test.go | 2 +- metric_test.go | 2 +- native/request/asset.go | 2 +- native/request/data.go | 2 +- native/request/image.go | 2 +- native/request/request.go | 2 +- native/request/request_test.go | 4 ++-- native/request/title.go | 2 +- native/request/video.go | 2 +- native/response/asset.go | 2 +- native/response/data.go | 2 +- native/response/image.go | 2 +- native/response/link.go | 2 +- native/response/response.go | 2 +- native/response/response_test.go | 2 +- native/response/title.go | 2 +- native_test.go | 2 +- numbers_test.go | 2 +- pmp_test.go | 2 +- quantity_test.go | 2 +- seatbid_test.go | 2 +- source_test.go | 2 +- video_test.go | 2 +- 34 files changed, 37 insertions(+), 37 deletions(-) diff --git a/README.md b/README.md index 2485a67..849badb 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # OpenRTB -[![Build Status](https://travis-ci.org/UnityTech/openrtb.svg?branch=master)](https://travis-ci.org/UnityTech/openrtb) +[![Build Status](https://travis-ci.org/Unity-Technologies/openrtb.svg?branch=master)](https://travis-ci.org/Unity-Technologies/openrtb) OpenRTB structs and validations for Go. @@ -13,7 +13,7 @@ Requires Go 1.8+ for proper `json.RawMessage` marshaling. To install, use `go get`: ```shell -go get github.com/UnityTech/openrtb/v3 +go get github.com/Unity-Technologies/openrtb/v3 ``` ## Usage @@ -26,7 +26,7 @@ import ( "log" "os" - "github.com/UnityTech/openrtb/v3" + "github.com/Unity-Technologies/openrtb/v3" ) func main() { diff --git a/audio_test.go b/audio_test.go index 9ae00df..cb27e93 100644 --- a/audio_test.go +++ b/audio_test.go @@ -5,7 +5,7 @@ import ( "reflect" "testing" - . "github.com/UnityTech/openrtb/v3" + . "github.com/Unity-Technologies/openrtb/v3" ) func TestAudio(t *testing.T) { diff --git a/banner_test.go b/banner_test.go index 72b5c93..5265166 100644 --- a/banner_test.go +++ b/banner_test.go @@ -4,7 +4,7 @@ import ( "reflect" "testing" - . "github.com/UnityTech/openrtb/v3" + . "github.com/Unity-Technologies/openrtb/v3" ) func TestBanner(t *testing.T) { diff --git a/bid_test.go b/bid_test.go index fed7861..c1c0255 100644 --- a/bid_test.go +++ b/bid_test.go @@ -5,7 +5,7 @@ import ( "reflect" "testing" - . "github.com/UnityTech/openrtb/v3" + . "github.com/Unity-Technologies/openrtb/v3" ) func TestBid(t *testing.T) { diff --git a/bidrequest_test.go b/bidrequest_test.go index 59419fb..745b15c 100644 --- a/bidrequest_test.go +++ b/bidrequest_test.go @@ -5,7 +5,7 @@ import ( "reflect" "testing" - . "github.com/UnityTech/openrtb/v3" + . "github.com/Unity-Technologies/openrtb/v3" ) func TestBidRequest(t *testing.T) { diff --git a/bidresponse_test.go b/bidresponse_test.go index bc3de35..d6a98b9 100644 --- a/bidresponse_test.go +++ b/bidresponse_test.go @@ -5,7 +5,7 @@ import ( "reflect" "testing" - . "github.com/UnityTech/openrtb/v3" + . "github.com/Unity-Technologies/openrtb/v3" ) func TestBidResponse(t *testing.T) { diff --git a/content_test.go b/content_test.go index 289ca62..00e1b70 100644 --- a/content_test.go +++ b/content_test.go @@ -4,7 +4,7 @@ import ( "reflect" "testing" - . "github.com/UnityTech/openrtb/v3" + . "github.com/Unity-Technologies/openrtb/v3" ) func TestContent(t *testing.T) { diff --git a/device_test.go b/device_test.go index d7f8b95..65be674 100644 --- a/device_test.go +++ b/device_test.go @@ -4,7 +4,7 @@ import ( "reflect" "testing" - . "github.com/UnityTech/openrtb/v3" + . "github.com/Unity-Technologies/openrtb/v3" ) func TestDevice(t *testing.T) { diff --git a/extension_test.go b/extension_test.go index 70de18d..57bd112 100644 --- a/extension_test.go +++ b/extension_test.go @@ -5,7 +5,7 @@ import ( "reflect" "testing" - . "github.com/UnityTech/openrtb/v3" + . "github.com/Unity-Technologies/openrtb/v3" ) func TestExtension(t *testing.T) { diff --git a/go.mod b/go.mod index 204a70e..f181ecc 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module github.com/UnityTech/openrtb/v3 +module github.com/Unity-Technologies/openrtb/v3 go 1.18 diff --git a/impression_test.go b/impression_test.go index 3a4cc2c..054f3f4 100644 --- a/impression_test.go +++ b/impression_test.go @@ -5,7 +5,7 @@ import ( "reflect" "testing" - . "github.com/UnityTech/openrtb/v3" + . "github.com/Unity-Technologies/openrtb/v3" ) func TestImpression(t *testing.T) { diff --git a/inventory_test.go b/inventory_test.go index 4bda401..66d1772 100644 --- a/inventory_test.go +++ b/inventory_test.go @@ -4,7 +4,7 @@ import ( "reflect" "testing" - . "github.com/UnityTech/openrtb/v3" + . "github.com/Unity-Technologies/openrtb/v3" ) func TestApp(t *testing.T) { diff --git a/metric_test.go b/metric_test.go index 3f256ec..f94db8a 100644 --- a/metric_test.go +++ b/metric_test.go @@ -4,7 +4,7 @@ import ( "reflect" "testing" - . "github.com/UnityTech/openrtb/v3" + . "github.com/Unity-Technologies/openrtb/v3" ) func TestMetric(t *testing.T) { diff --git a/native/request/asset.go b/native/request/asset.go index 136ea25..fac806a 100644 --- a/native/request/asset.go +++ b/native/request/asset.go @@ -1,6 +1,6 @@ package request -import "github.com/UnityTech/openrtb/v3" +import "github.com/Unity-Technologies/openrtb/v3" // Asset is the main container object for each asset requested or supported by Exchange // on behalf of the rendering client. Only one of the {title,img,video,data} diff --git a/native/request/data.go b/native/request/data.go index 66a86e2..cf26f29 100644 --- a/native/request/data.go +++ b/native/request/data.go @@ -1,6 +1,6 @@ package request -import "github.com/UnityTech/openrtb/v3" +import "github.com/Unity-Technologies/openrtb/v3" // DataTypeID enum. type DataTypeID int diff --git a/native/request/image.go b/native/request/image.go index 8f950d7..f5f9f68 100644 --- a/native/request/image.go +++ b/native/request/image.go @@ -1,6 +1,6 @@ package request -import "github.com/UnityTech/openrtb/v3" +import "github.com/Unity-Technologies/openrtb/v3" // ImageTypeID enum. type ImageTypeID int diff --git a/native/request/request.go b/native/request/request.go index 8946010..5a7a7b1 100644 --- a/native/request/request.go +++ b/native/request/request.go @@ -1,6 +1,6 @@ package request -import "github.com/UnityTech/openrtb/v3" +import "github.com/Unity-Technologies/openrtb/v3" // LayoutID enum. type LayoutID int diff --git a/native/request/request_test.go b/native/request/request_test.go index 8bd33c2..d01e880 100644 --- a/native/request/request_test.go +++ b/native/request/request_test.go @@ -6,8 +6,8 @@ import ( "reflect" "testing" - "github.com/UnityTech/openrtb/v3" - . "github.com/UnityTech/openrtb/v3/native/request" + "github.com/Unity-Technologies/openrtb/v3" + . "github.com/Unity-Technologies/openrtb/v3/native/request" ) func TestRequest(t *testing.T) { diff --git a/native/request/title.go b/native/request/title.go index bdaa000..97f5edd 100644 --- a/native/request/title.go +++ b/native/request/title.go @@ -1,6 +1,6 @@ package request -import "github.com/UnityTech/openrtb/v3" +import "github.com/Unity-Technologies/openrtb/v3" // Title is the native title object. type Title struct { diff --git a/native/request/video.go b/native/request/video.go index a59cb65..5e1e461 100644 --- a/native/request/video.go +++ b/native/request/video.go @@ -1,6 +1,6 @@ package request -import "github.com/UnityTech/openrtb/v3" +import "github.com/Unity-Technologies/openrtb/v3" // Video is the native video object. // TODO unclear if its the same as imp.video https://github.com/openrtb/OpenRTB/issues/26 diff --git a/native/response/asset.go b/native/response/asset.go index d0846a0..a0b090c 100644 --- a/native/response/asset.go +++ b/native/response/asset.go @@ -1,6 +1,6 @@ package response -import "github.com/UnityTech/openrtb/v3" +import "github.com/Unity-Technologies/openrtb/v3" // Asset corresponds to the Asset Object in the request. The main container object for // each asset requested or supported by Exchange on behalf of the rendering diff --git a/native/response/data.go b/native/response/data.go index b90136e..24103fe 100644 --- a/native/response/data.go +++ b/native/response/data.go @@ -1,6 +1,6 @@ package response -import "github.com/UnityTech/openrtb/v3" +import "github.com/Unity-Technologies/openrtb/v3" // Data object contains response data. type Data struct { diff --git a/native/response/image.go b/native/response/image.go index 276f250..7462c83 100644 --- a/native/response/image.go +++ b/native/response/image.go @@ -1,6 +1,6 @@ package response -import "github.com/UnityTech/openrtb/v3" +import "github.com/Unity-Technologies/openrtb/v3" // Image object contains response image. type Image struct { diff --git a/native/response/link.go b/native/response/link.go index 5bf5798..ba76100 100644 --- a/native/response/link.go +++ b/native/response/link.go @@ -1,6 +1,6 @@ package response -import "github.com/UnityTech/openrtb/v3" +import "github.com/Unity-Technologies/openrtb/v3" // Link object contains response link. type Link struct { diff --git a/native/response/response.go b/native/response/response.go index 9d6ea06..fd1e0cb 100644 --- a/native/response/response.go +++ b/native/response/response.go @@ -1,6 +1,6 @@ package response -import "github.com/UnityTech/openrtb/v3" +import "github.com/Unity-Technologies/openrtb/v3" // Response is the native object is the top level JSON object which identifies a native response. type Response struct { diff --git a/native/response/response_test.go b/native/response/response_test.go index 908524d..866db16 100644 --- a/native/response/response_test.go +++ b/native/response/response_test.go @@ -6,7 +6,7 @@ import ( "reflect" "testing" - . "github.com/UnityTech/openrtb/v3/native/response" + . "github.com/Unity-Technologies/openrtb/v3/native/response" ) func TestResponse(t *testing.T) { diff --git a/native/response/title.go b/native/response/title.go index fda13d3..ac39a61 100644 --- a/native/response/title.go +++ b/native/response/title.go @@ -1,6 +1,6 @@ package response -import "github.com/UnityTech/openrtb/v3" +import "github.com/Unity-Technologies/openrtb/v3" // Title wraps title information. type Title struct { diff --git a/native_test.go b/native_test.go index 57e43cf..9d563fa 100644 --- a/native_test.go +++ b/native_test.go @@ -4,7 +4,7 @@ import ( "reflect" "testing" - . "github.com/UnityTech/openrtb/v3" + . "github.com/Unity-Technologies/openrtb/v3" ) func TestNative(t *testing.T) { diff --git a/numbers_test.go b/numbers_test.go index 543ad6c..315a3cf 100644 --- a/numbers_test.go +++ b/numbers_test.go @@ -4,7 +4,7 @@ import ( "encoding/json" "testing" - . "github.com/UnityTech/openrtb/v3" + . "github.com/Unity-Technologies/openrtb/v3" ) func TestNumberOrString(t *testing.T) { diff --git a/pmp_test.go b/pmp_test.go index 7a2b690..715fa48 100644 --- a/pmp_test.go +++ b/pmp_test.go @@ -6,7 +6,7 @@ import ( "reflect" "testing" - . "github.com/UnityTech/openrtb/v3" + . "github.com/Unity-Technologies/openrtb/v3" ) func TestPMP(t *testing.T) { diff --git a/quantity_test.go b/quantity_test.go index 54a1e41..182728c 100644 --- a/quantity_test.go +++ b/quantity_test.go @@ -4,7 +4,7 @@ import ( "reflect" "testing" - . "github.com/UnityTech/openrtb/v3" + . "github.com/Unity-Technologies/openrtb/v3" ) func TestQuantity(t *testing.T) { diff --git a/seatbid_test.go b/seatbid_test.go index 0590c85..b7b1349 100644 --- a/seatbid_test.go +++ b/seatbid_test.go @@ -4,7 +4,7 @@ import ( "errors" "testing" - . "github.com/UnityTech/openrtb/v3" + . "github.com/Unity-Technologies/openrtb/v3" ) func TestSeatBid_Validate(t *testing.T) { diff --git a/source_test.go b/source_test.go index d4f9f3f..3f73341 100644 --- a/source_test.go +++ b/source_test.go @@ -4,7 +4,7 @@ import ( "reflect" "testing" - . "github.com/UnityTech/openrtb/v3" + . "github.com/Unity-Technologies/openrtb/v3" ) func TestSource(t *testing.T) { diff --git a/video_test.go b/video_test.go index 12037df..2926a31 100644 --- a/video_test.go +++ b/video_test.go @@ -5,7 +5,7 @@ import ( "reflect" "testing" - . "github.com/UnityTech/openrtb/v3" + . "github.com/Unity-Technologies/openrtb/v3" ) func TestVideo(t *testing.T) {