Move utils to internal

This commit is contained in:
9seconds
2021-04-02 21:27:34 +03:00
parent 7b5cb8e14b
commit 2fe04c7c9b
6 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -7,12 +7,12 @@ import (
"github.com/9seconds/mtg/v2/antireplay" "github.com/9seconds/mtg/v2/antireplay"
"github.com/9seconds/mtg/v2/events" "github.com/9seconds/mtg/v2/events"
"github.com/9seconds/mtg/v2/internal/utils"
"github.com/9seconds/mtg/v2/ipblocklist" "github.com/9seconds/mtg/v2/ipblocklist"
"github.com/9seconds/mtg/v2/logger" "github.com/9seconds/mtg/v2/logger"
"github.com/9seconds/mtg/v2/mtglib" "github.com/9seconds/mtg/v2/mtglib"
"github.com/9seconds/mtg/v2/stats" "github.com/9seconds/mtg/v2/stats"
"github.com/9seconds/mtg/v2/timeattack" "github.com/9seconds/mtg/v2/timeattack"
"github.com/9seconds/mtg/v2/utils"
"github.com/rs/zerolog" "github.com/rs/zerolog"
) )
+1 -1
View File
@@ -5,7 +5,7 @@ import (
"time" "time"
"github.com/9seconds/mtg/v2/cli" "github.com/9seconds/mtg/v2/cli"
"github.com/9seconds/mtg/v2/utils" "github.com/9seconds/mtg/v2/internal/utils"
"github.com/alecthomas/kong" "github.com/alecthomas/kong"
) )