Skip to content

Commit

Permalink
Merge pull request #3 from onfocusio/fix-dependencies
Browse files Browse the repository at this point in the history
GoMod: Fix dependencies
  • Loading branch information
Clement3 authored Dec 17, 2024
2 parents cbc1c22 + e031c4a commit 261f317
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 10 deletions.
3 changes: 1 addition & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
module github.com/onfocusio/openrtb-adagio
module github.com/prebid/openrtb/v20

go 1.16

require (
github.com/onsi/ginkgo v1.16.1
github.com/onsi/gomega v1.11.0
github.com/prebid/openrtb/v20 v20.1.0
)
2 changes: 0 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@ github.com/onsi/gomega v1.10.1/go.mod h1:iN09h71vgCQne3DLsj+A5owkum+a2tYe+TOCB1y
github.com/onsi/gomega v1.11.0 h1:+CqWgvj0OZycCaqclBD1pxKHAU+tOkHmQIWvDHq2aug=
github.com/onsi/gomega v1.11.0/go.mod h1:azGKhqFUon9Vuj0YmTfLSmx0FUwqXYSTl5re8lQLTUg=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/prebid/openrtb/v20 v20.1.0 h1:Rb+Z3H3UxiqqnjgJK3R9Wt73ibrh7HPzG7ikBckQNqc=
github.com/prebid/openrtb/v20 v20.1.0/go.mod h1:hLBrA/APkSrxs5MaW639l+y/EAHivDfRagO2TX/wbSc=
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA=
github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
Expand Down
2 changes: 1 addition & 1 deletion native1/request/video.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package request

import "github.com/onfocusio/openrtb-adagio/common"
import "github.com/prebid/openrtb/v20/common"

// 4.5 Video Object
//
Expand Down
1 change: 0 additions & 1 deletion openrtb2/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package openrtb2

import (
"encoding/json"

"github.com/prebid/openrtb/v20/adcom1"
)

Expand Down
2 changes: 1 addition & 1 deletion openrtb2/banner.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package openrtb2

import (
"github.com/onfocusio/openrtb-adagio/common"
"github.com/prebid/openrtb/v20/common"
)

// 3.2.6 Object: Banner
Expand Down
2 changes: 1 addition & 1 deletion openrtb2/durfloors.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package openrtb2

import (
"github.com/onfocusio/openrtb-adagio/common"
"github.com/prebid/openrtb/v20/common"
)

// Object: DurFloors
Expand Down
2 changes: 1 addition & 1 deletion openrtb2/format.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package openrtb2

import (
"github.com/onfocusio/openrtb-adagio/common"
"github.com/prebid/openrtb/v20/common"
)

type Format = common.Format
2 changes: 1 addition & 1 deletion openrtb2/video.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package openrtb2

import (
"github.com/onfocusio/openrtb-adagio/common"
"github.com/prebid/openrtb/v20/common"
)

// 3.2.7 Object: Video
Expand Down

0 comments on commit 261f317

Please sign in to comment.