Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Oo 1 #131

Open
wants to merge 15 commits into
base: main
Choose a base branch
from
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
*.makefile
.idea
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Requires Go 1.8+ for proper `json.RawMessage` marshaling.
To install, use `go get`:

```shell
go get github.com/bsm/openrtb/v3
go get github.com/octoclick/openrtb-easyjson
```

## Usage
Expand All @@ -23,7 +23,7 @@ package main

import (
"log"
"github.com/bsm/openrtb/v3"
"github.com/octoclick/openrtb-easyjson"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion audio_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"reflect"
"testing"

. "github.com/bsm/openrtb/v3"
. "github.com/octoclick/openrtb-easyjson"
)

func TestAudio(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion banner_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"reflect"
"testing"

. "github.com/bsm/openrtb/v3"
. "github.com/octoclick/openrtb-easyjson"
)

func TestBanner(t *testing.T) {
Expand Down
Loading