From f5a87d80bd470256a55625ad042b63f3721e355f Mon Sep 17 00:00:00 2001 From: Sylvia Liu Date: Mon, 26 Jun 2023 09:05:09 -0400 Subject: [PATCH] module path updated --- README.md | 2 +- go.mod | 2 +- gpp_parsed_consent_fixture_test.go | 2 +- gpp_parsed_consent_test.go | 2 +- mspa_parsed_consent_fixture_test.go | 2 +- mspa_parsed_consent_test.go | 2 +- parse_test.go | 2 +- parsed_consent_fixture_test.go | 2 +- parsed_consent_test.go | 2 +- v2_parsed_consent_fixture_test.go | 2 +- v2_parsed_consent_test.go | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 0bfb35c..76317dc 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ Example use: ```go package main -import "github.com/LiveRamp/iabconsent" +import "github.com/StackAdapt/iabconsent" func main() { var consent = "COvzTO5OvzTO5BRAAAENAPCoALIAADgAAAAAAewAwABAAlAB6ABBFAAA" diff --git a/go.mod b/go.mod index e9b6e71..2c13e1a 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/LiveRamp/iabconsent +module github.com/StackAdapt/iabconsent go 1.16 diff --git a/gpp_parsed_consent_fixture_test.go b/gpp_parsed_consent_fixture_test.go index f5d1a2f..630e596 100644 --- a/gpp_parsed_consent_fixture_test.go +++ b/gpp_parsed_consent_fixture_test.go @@ -1,7 +1,7 @@ package iabconsent_test import ( - "github.com/LiveRamp/iabconsent" + "github.com/StackAdapt/iabconsent" "time" ) diff --git a/gpp_parsed_consent_test.go b/gpp_parsed_consent_test.go index cb8ed5f..8efd582 100644 --- a/gpp_parsed_consent_test.go +++ b/gpp_parsed_consent_test.go @@ -7,7 +7,7 @@ import ( "github.com/go-check/check" "github.com/pkg/errors" - "github.com/LiveRamp/iabconsent" + "github.com/StackAdapt/iabconsent" ) type GppParseSuite struct{} diff --git a/mspa_parsed_consent_fixture_test.go b/mspa_parsed_consent_fixture_test.go index 08d66cc..2e47ea0 100644 --- a/mspa_parsed_consent_fixture_test.go +++ b/mspa_parsed_consent_fixture_test.go @@ -1,7 +1,7 @@ package iabconsent_test import ( - "github.com/LiveRamp/iabconsent" + "github.com/StackAdapt/iabconsent" ) // Test fixtures can be created here: https://iabgpp.com/ diff --git a/mspa_parsed_consent_test.go b/mspa_parsed_consent_test.go index 29986e7..36ec00a 100644 --- a/mspa_parsed_consent_test.go +++ b/mspa_parsed_consent_test.go @@ -4,7 +4,7 @@ import ( "github.com/go-check/check" "github.com/pkg/errors" - "github.com/LiveRamp/iabconsent" + "github.com/StackAdapt/iabconsent" ) type MspaSuite struct{} diff --git a/parse_test.go b/parse_test.go index c362dcb..52c0b7e 100644 --- a/parse_test.go +++ b/parse_test.go @@ -6,7 +6,7 @@ import ( "github.com/go-check/check" - "github.com/LiveRamp/iabconsent" + "github.com/StackAdapt/iabconsent" ) type ParseSuite struct{} diff --git a/parsed_consent_fixture_test.go b/parsed_consent_fixture_test.go index 6e07d82..d9cf550 100644 --- a/parsed_consent_fixture_test.go +++ b/parsed_consent_fixture_test.go @@ -3,7 +3,7 @@ package iabconsent_test import ( "time" - "github.com/LiveRamp/iabconsent" + "github.com/StackAdapt/iabconsent" ) type consentType int diff --git a/parsed_consent_test.go b/parsed_consent_test.go index e889d13..6eb69dd 100644 --- a/parsed_consent_test.go +++ b/parsed_consent_test.go @@ -5,7 +5,7 @@ import ( "github.com/go-check/check" - "github.com/LiveRamp/iabconsent" + "github.com/StackAdapt/iabconsent" ) type ParsedConsentSuite struct{} diff --git a/v2_parsed_consent_fixture_test.go b/v2_parsed_consent_fixture_test.go index 81d6acf..dce552b 100644 --- a/v2_parsed_consent_fixture_test.go +++ b/v2_parsed_consent_fixture_test.go @@ -3,7 +3,7 @@ package iabconsent_test import ( "time" - "github.com/LiveRamp/iabconsent" + "github.com/StackAdapt/iabconsent" ) var v2TestTime = time.Unix(1583436280, 9*nsPerDs).UTC() diff --git a/v2_parsed_consent_test.go b/v2_parsed_consent_test.go index e7af2e4..232ab1a 100644 --- a/v2_parsed_consent_test.go +++ b/v2_parsed_consent_test.go @@ -3,7 +3,7 @@ package iabconsent_test import ( "github.com/go-check/check" - "github.com/LiveRamp/iabconsent" + "github.com/StackAdapt/iabconsent" ) type V2ParsedConsentSuite struct{}