From f10627c9e86ac39e21bf67ce1cb715acbea11b84 Mon Sep 17 00:00:00 2001 From: Florian Knigge Date: Fri, 25 Oct 2024 14:34:15 +0200 Subject: [PATCH] Use new repo URL as module URL To allow importing it directly from its new location. As it is a fork of github.com/niondir/go-service, it may be nicer to keep the old path pointing back to its origin... --- builder_test.go | 2 +- func_test.go | 2 +- go.mod | 2 +- service_test.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/builder_test.go b/builder_test.go index 78a2430..82cd3e0 100644 --- a/builder_test.go +++ b/builder_test.go @@ -2,7 +2,7 @@ package service_test import ( "context" - "github.com/niondir/go-service" + "github.com/lobaro/go-service" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" "testing" diff --git a/func_test.go b/func_test.go index 2363b23..443ccae 100644 --- a/func_test.go +++ b/func_test.go @@ -2,7 +2,7 @@ package service_test import ( "context" - "github.com/niondir/go-service" + "github.com/lobaro/go-service" "github.com/stretchr/testify/require" "testing" "time" diff --git a/go.mod b/go.mod index a38f234..986efc6 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/niondir/go-service +module github.com/lobaro/go-service go 1.23 diff --git a/service_test.go b/service_test.go index 6899c94..76553b0 100644 --- a/service_test.go +++ b/service_test.go @@ -3,7 +3,7 @@ package service_test import ( "context" "fmt" - "github.com/niondir/go-service" + "github.com/lobaro/go-service" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" "log/slog"