Private
Public Access
1
0

Vanity domain update: drop v2

This commit is contained in:
2024-09-06 01:12:11 -07:00
parent c1fef50c0c
commit a11dd27ef8
6 changed files with 14 additions and 14 deletions

View File

@@ -4,7 +4,7 @@ import (
"math/rand" "math/rand"
"time" "time"
"go.buzzert.net/kordophone-mock/v2/model" "go.buzzert.net/kordophone-mock/model"
"github.com/google/uuid" "github.com/google/uuid"
) )

View File

@@ -9,8 +9,8 @@ import (
"github.com/rs/zerolog" "github.com/rs/zerolog"
"github.com/rs/zerolog/log" "github.com/rs/zerolog/log"
"go.buzzert.net/kordophone-mock/v2/prompt" "go.buzzert.net/kordophone-mock/prompt"
"go.buzzert.net/kordophone-mock/v2/web" "go.buzzert.net/kordophone-mock/web"
) )
type LoggingHook struct { type LoggingHook struct {

View File

@@ -6,8 +6,8 @@ import (
"strings" "strings"
"time" "time"
"go.buzzert.net/kordophone-mock/v2/model" "go.buzzert.net/kordophone-mock/model"
"go.buzzert.net/kordophone-mock/v2/server" "go.buzzert.net/kordophone-mock/server"
"github.com/chzyer/readline" "github.com/chzyer/readline"
"github.com/google/uuid" "github.com/google/uuid"
"github.com/rs/zerolog/log" "github.com/rs/zerolog/log"

View File

@@ -9,9 +9,9 @@ import (
"sort" "sort"
"time" "time"
"go.buzzert.net/kordophone-mock/v2/data" "go.buzzert.net/kordophone-mock/data"
"go.buzzert.net/kordophone-mock/v2/model" "go.buzzert.net/kordophone-mock/model"
"go.buzzert.net/kordophone-mock/v2/resources" "go.buzzert.net/kordophone-mock/resources"
"github.com/google/uuid" "github.com/google/uuid"
"github.com/rs/zerolog/log" "github.com/rs/zerolog/log"
) )

View File

@@ -9,8 +9,8 @@ import (
"strings" "strings"
"time" "time"
"go.buzzert.net/kordophone-mock/v2/model" "go.buzzert.net/kordophone-mock/model"
"go.buzzert.net/kordophone-mock/v2/server" "go.buzzert.net/kordophone-mock/server"
"github.com/google/uuid" "github.com/google/uuid"
"github.com/rs/zerolog/log" "github.com/rs/zerolog/log"
"golang.org/x/net/websocket" "golang.org/x/net/websocket"

View File

@@ -11,10 +11,10 @@ import (
"testing" "testing"
"time" "time"
"go.buzzert.net/kordophone-mock/v2/data" "go.buzzert.net/kordophone-mock/data"
"go.buzzert.net/kordophone-mock/v2/model" "go.buzzert.net/kordophone-mock/model"
"go.buzzert.net/kordophone-mock/v2/server" "go.buzzert.net/kordophone-mock/server"
"go.buzzert.net/kordophone-mock/v2/web" "go.buzzert.net/kordophone-mock/web"
"golang.org/x/net/websocket" "golang.org/x/net/websocket"
) )