diff --git a/api/v2/workspace_service.go b/api/v2/workspace_service.go index 8324502e..78b31a7e 100644 --- a/api/v2/workspace_service.go +++ b/api/v2/workspace_service.go @@ -6,7 +6,7 @@ import ( apiv2pb "github.com/usememos/memos/proto/gen/api/v2" ) -func (s *APIV2Service) GetWorkspaceProfile(ctx context.Context, _ *apiv2pb.GetWorkspaceProfileRequest) (*apiv2pb.GetWorkspaceProfileResponse, error) { +func (s *APIV2Service) GetWorkspaceProfile(_ context.Context, _ *apiv2pb.GetWorkspaceProfileRequest) (*apiv2pb.GetWorkspaceProfileResponse, error) { workspaceProfile := &apiv2pb.WorkspaceProfile{ Version: s.Profile.Version, Mode: s.Profile.Mode, diff --git a/store/db/postgres/workspace_setting.go b/store/db/postgres/workspace_setting.go index ed2add3d..16546f5b 100644 --- a/store/db/postgres/workspace_setting.go +++ b/store/db/postgres/workspace_setting.go @@ -4,9 +4,10 @@ import ( "context" "strings" + "google.golang.org/protobuf/encoding/protojson" + storepb "github.com/usememos/memos/proto/gen/store" "github.com/usememos/memos/store" - "google.golang.org/protobuf/encoding/protojson" ) func (d *DB) UpsertWorkspaceSetting(ctx context.Context, upsert *store.WorkspaceSetting) (*store.WorkspaceSetting, error) {