From 12275c6a344daf59a3d022b7ebaf7c69cf6636a1 Mon Sep 17 00:00:00 2001 From: Steven Date: Sun, 28 Jan 2024 07:38:01 +0800 Subject: [PATCH] chore: fix linter warning --- api/v2/workspace_service.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/v2/workspace_service.go b/api/v2/workspace_service.go index 69559b78..2b070501 100644 --- a/api/v2/workspace_service.go +++ b/api/v2/workspace_service.go @@ -11,7 +11,7 @@ import ( "github.com/usememos/memos/store" ) -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,