Private
Public Access
1
0

Update module with vanity domain

This commit is contained in:
2024-09-06 01:09:41 -07:00
parent b47132fd05
commit c1fef50c0c
7 changed files with 15 additions and 15 deletions

View File

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

2
go.mod
View File

@@ -1,4 +1,4 @@
module code.severnaya.net/kordophone-mock/v2 module go.buzzert.net/kordophone-mock
go 1.17 go 1.17

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"
"code.severnaya.net/kordophone-mock/v2/prompt" "go.buzzert.net/kordophone-mock/v2/prompt"
"code.severnaya.net/kordophone-mock/v2/web" "go.buzzert.net/kordophone-mock/v2/web"
) )
type LoggingHook struct { type LoggingHook struct {

View File

@@ -6,8 +6,8 @@ import (
"strings" "strings"
"time" "time"
"code.severnaya.net/kordophone-mock/v2/model" "go.buzzert.net/kordophone-mock/v2/model"
"code.severnaya.net/kordophone-mock/v2/server" "go.buzzert.net/kordophone-mock/v2/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"
"code.severnaya.net/kordophone-mock/v2/data" "go.buzzert.net/kordophone-mock/v2/data"
"code.severnaya.net/kordophone-mock/v2/model" "go.buzzert.net/kordophone-mock/v2/model"
"code.severnaya.net/kordophone-mock/v2/resources" "go.buzzert.net/kordophone-mock/v2/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"
"code.severnaya.net/kordophone-mock/v2/model" "go.buzzert.net/kordophone-mock/v2/model"
"code.severnaya.net/kordophone-mock/v2/server" "go.buzzert.net/kordophone-mock/v2/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"
"code.severnaya.net/kordophone-mock/v2/data" "go.buzzert.net/kordophone-mock/v2/data"
"code.severnaya.net/kordophone-mock/v2/model" "go.buzzert.net/kordophone-mock/v2/model"
"code.severnaya.net/kordophone-mock/v2/server" "go.buzzert.net/kordophone-mock/v2/server"
"code.severnaya.net/kordophone-mock/v2/web" "go.buzzert.net/kordophone-mock/v2/web"
"golang.org/x/net/websocket" "golang.org/x/net/websocket"
) )