Skip to content

Commit

Permalink
chore: tweak imports order
Browse files Browse the repository at this point in the history
  • Loading branch information
boojack committed Feb 28, 2024
1 parent 3e50bee commit 5f2a624
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion server/route/api/v2/auth_service.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ import (
"google.golang.org/grpc/metadata"
"google.golang.org/grpc/status"

"github.com/usememos/memos/server/route/api/auth"
"github.com/usememos/memos/internal/util"
"github.com/usememos/memos/plugin/idp"
"github.com/usememos/memos/plugin/idp/oauth2"
apiv2pb "github.com/usememos/memos/proto/gen/api/v2"
"github.com/usememos/memos/server/route/api/auth"
"github.com/usememos/memos/store"
)

Expand Down
6 changes: 3 additions & 3 deletions server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ import (
"github.com/labstack/echo/v4/middleware"
"github.com/pkg/errors"

apiv1 "github.com/usememos/memos/server/route/api/v1"
apiv2 "github.com/usememos/memos/server/route/api/v2"
"github.com/usememos/memos/plugin/telegram"
"github.com/usememos/memos/server/route/frontend"
"github.com/usememos/memos/server/integration"
"github.com/usememos/memos/server/profile"
apiv1 "github.com/usememos/memos/server/route/api/v1"
apiv2 "github.com/usememos/memos/server/route/api/v2"
"github.com/usememos/memos/server/route/frontend"
versionchecker "github.com/usememos/memos/server/service/version_checker"
"github.com/usememos/memos/store"
)
Expand Down

0 comments on commit 5f2a624

Please sign in to comment.