1
0
mirror of https://github.com/jhillyerd/inbucket.git synced 2025-12-20 02:57:05 +00:00

go: update mod and imports to correctly reflect major version (#388)

This commit is contained in:
James Hillyerd
2023-09-09 12:36:21 -07:00
committed by GitHub
parent 558f3de083
commit 9836c0ffbb
58 changed files with 168 additions and 168 deletions

View File

@@ -5,9 +5,9 @@ import (
"strings"
"github.com/gorilla/mux"
"github.com/inbucket/inbucket/pkg/config"
"github.com/inbucket/inbucket/pkg/message"
"github.com/inbucket/inbucket/pkg/msghub"
"github.com/inbucket/inbucket/v3/pkg/config"
"github.com/inbucket/inbucket/v3/pkg/message"
"github.com/inbucket/inbucket/v3/pkg/msghub"
)
// Context is passed into every request handler function

View File

@@ -5,7 +5,7 @@ import (
"net/http"
"os"
"github.com/inbucket/inbucket/pkg/config"
"github.com/inbucket/inbucket/v3/pkg/config"
"github.com/rs/zerolog/log"
)

View File

@@ -15,10 +15,10 @@ import (
"time"
"github.com/gorilla/mux"
"github.com/inbucket/inbucket/pkg/config"
"github.com/inbucket/inbucket/pkg/message"
"github.com/inbucket/inbucket/pkg/msghub"
"github.com/inbucket/inbucket/pkg/stringutil"
"github.com/inbucket/inbucket/v3/pkg/config"
"github.com/inbucket/inbucket/v3/pkg/message"
"github.com/inbucket/inbucket/v3/pkg/msghub"
"github.com/inbucket/inbucket/v3/pkg/stringutil"
"github.com/rs/zerolog/log"
)