Skip to content
This repository was archived by the owner on Jul 22, 2025. It is now read-only.
Open

Oo 1 #131

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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