chore: move common packages to internal

This commit is contained in:
Steven
2023-10-26 09:02:50 +08:00
parent 9859d77cba
commit 5b3af827e1
27 changed files with 27 additions and 27 deletions

View File

@@ -8,7 +8,7 @@ import (
"github.com/labstack/echo/v4"
"github.com/labstack/echo/v4/middleware"
"github.com/usememos/memos/common/util"
"github.com/usememos/memos/internal/util"
)
//go:embed dist

View File

@@ -18,7 +18,7 @@ import (
apiv1 "github.com/usememos/memos/api/v1"
apiv2 "github.com/usememos/memos/api/v2"
"github.com/usememos/memos/common/log"
"github.com/usememos/memos/internal/log"
"github.com/usememos/memos/plugin/telegram"
"github.com/usememos/memos/server/integration"
"github.com/usememos/memos/server/profile"

View File

@@ -9,7 +9,7 @@ import (
"go.uber.org/zap"
apiv1 "github.com/usememos/memos/api/v1"
"github.com/usememos/memos/common/log"
"github.com/usememos/memos/internal/log"
"github.com/usememos/memos/store"
)