refactor: move pkg/utf7 to internal/utf7

This commit is contained in:
lilong.129
2025-02-06 11:32:46 +08:00
parent a578e92e00
commit 8a7b48a1af
6 changed files with 2 additions and 2 deletions

View File

@@ -22,8 +22,8 @@ import (
"github.com/httprunner/httprunner/v5/code"
"github.com/httprunner/httprunner/v5/internal/config"
"github.com/httprunner/httprunner/v5/internal/utf7"
"github.com/httprunner/httprunner/v5/pkg/gadb"
"github.com/httprunner/httprunner/v5/pkg/utf7"
)
const (

View File

@@ -16,7 +16,7 @@ import (
"github.com/pkg/errors"
"github.com/rs/zerolog/log"
"github.com/httprunner/httprunner/v5/pkg/utf7"
"github.com/httprunner/httprunner/v5/internal/utf7"
)
var errDriverNotImplemented = errors.New("driver method not implemented")