Skip to content

Commit b3b3b1b

Browse files
authored
Merge pull request #1 from UnityTech/ignore_mix_max_duration
Forked bsm/openrtb project to not enforce min/max duration
2 parents 1979186 + aa04a26 commit b3b3b1b

16 files changed

Lines changed: 16 additions & 29 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Go OpenRTB v2.x
22

3-
[![Build Status](https://travis-ci.org/bsm/openrtb.svg?branch=master)](https://travis-ci.org/bsm/openrtb)
3+
[![Build Status](https://travis-ci.org/UnityTech/openrtb.svg?branch=master)](https://travis-ci.org/UnityTech/openrtb)
44

55
OpenRTB implementation for Go
66

@@ -9,7 +9,7 @@ OpenRTB implementation for Go
99
To install, use `go get`:
1010

1111
```shell
12-
go get github.com/bsm/openrtb
12+
go get github.com/UnityTech/openrtb
1313
```
1414

1515
## Usage
@@ -21,7 +21,7 @@ package main
2121

2222
import (
2323
"log"
24-
"github.com/bsm/openrtb"
24+
"github.com/UnityTech/openrtb"
2525
)
2626

2727
func main() {

native/request/asset.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package request
22

3-
import "github.com/bsm/openrtb"
3+
import "github.com/UnityTech/openrtb"
44

55
// The main container object for each asset requested or supported by Exchange
66
// on behalf of the rendering client. Only one of the {title,img,video,data}

native/request/data.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package request
22

3-
import "github.com/bsm/openrtb"
3+
import "github.com/UnityTech/openrtb"
44

55
type DataTypeID int
66

native/request/image.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package request
22

3-
import "github.com/bsm/openrtb"
3+
import "github.com/UnityTech/openrtb"
44

55
type ImageTypeID int
66

native/request/request.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package request
22

3-
import "github.com/bsm/openrtb"
3+
import "github.com/UnityTech/openrtb"
44

55
type LayoutID int
66

native/request/request_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"io/ioutil"
66
"testing"
77

8-
"github.com/bsm/openrtb"
8+
"github.com/UnityTech/openrtb"
99
. "github.com/onsi/ginkgo"
1010
. "github.com/onsi/gomega"
1111
)

native/request/title.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package request
22

3-
import "github.com/bsm/openrtb"
3+
import "github.com/UnityTech/openrtb"
44

55
type Title struct {
66
Length int `json:"len"` // Maximum length of the text in the title element

native/request/video.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package request
22

3-
import "github.com/bsm/openrtb"
3+
import "github.com/UnityTech/openrtb"
44

55
// TODO unclear if its the same as imp.video https://github.com/openrtb/OpenRTB/issues/26
66
type Video struct {

native/response/asset.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package response
22

3-
import "github.com/bsm/openrtb"
3+
import "github.com/UnityTech/openrtb"
44

55
// Corresponds to the Asset Object in the request. The main container object for
66
// each asset requested or supported by Exchange on behalf of the rendering

native/response/data.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package response
22

3-
import "github.com/bsm/openrtb"
3+
import "github.com/UnityTech/openrtb"
44

55
type Data struct {
66
Label string `json:"label,omitempty"` // The optional formatted string name of the data type to be displayed

0 commit comments

Comments
 (0)