From 38aa0e5982cc4fad1c8f8bfde780c442f1455c44 Mon Sep 17 00:00:00 2001 From: atomirex Date: Tue, 26 Nov 2024 09:07:50 -0500 Subject: [PATCH] Reverting the package names on this branch for the PR --- examples/query/main.go | 2 +- examples/server/main.go | 2 +- examples/server/publish_ip/main.go | 2 +- go.mod | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/query/main.go b/examples/query/main.go index 56b200e..3539d05 100644 --- a/examples/query/main.go +++ b/examples/query/main.go @@ -10,7 +10,7 @@ import ( "net" "os" - "github.com/atomirex/mdns" + "github.com/pion/mdns/v2" "golang.org/x/net/ipv4" "golang.org/x/net/ipv6" ) diff --git a/examples/server/main.go b/examples/server/main.go index e1394ea..ce9b20b 100644 --- a/examples/server/main.go +++ b/examples/server/main.go @@ -7,7 +7,7 @@ package main import ( "net" - "github.com/atomirex/mdns" + "github.com/pion/mdns/v2" "golang.org/x/net/ipv4" "golang.org/x/net/ipv6" ) diff --git a/examples/server/publish_ip/main.go b/examples/server/publish_ip/main.go index 8e26e41..968991f 100644 --- a/examples/server/publish_ip/main.go +++ b/examples/server/publish_ip/main.go @@ -9,7 +9,7 @@ import ( "flag" "net" - "github.com/atomirex/mdns" + "github.com/pion/mdns/v2" "golang.org/x/net/ipv4" "golang.org/x/net/ipv6" ) diff --git a/go.mod b/go.mod index 8d87d09..b48598f 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/atomirex/mdns +module github.com/pion/mdns/v2 go 1.20