chore: use the built-in slices library (#3172)

Signed-off-by: stayweek <jiangtengtao@outlook.com>
This commit is contained in:
stayweek
2024-04-01 17:16:29 +08:00
committed by GitHub
parent b1297f5d01
commit 5aa633948e
2 changed files with 2 additions and 2 deletions

View File

@@ -5,10 +5,10 @@ import (
"fmt"
"net/http"
"regexp"
"slices"
"sort"
"github.com/labstack/echo/v4"
"golang.org/x/exp/slices"
"github.com/usememos/memos/store"
)

View File

@@ -4,6 +4,7 @@ import (
"context"
"fmt"
"net/http"
"slices"
"strings"
"time"
@@ -12,7 +13,6 @@ import (
"github.com/labstack/echo/v4"
"github.com/pkg/errors"
"golang.org/x/crypto/bcrypt"
"golang.org/x/exp/slices"
expr "google.golang.org/genproto/googleapis/api/expr/v1alpha1"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"