From 230872f31a96f8454a5d8b5f3ae03fed55125a68 Mon Sep 17 00:00:00 2001 From: Amolith Date: Sun, 18 May 2025 11:14:17 -0600 Subject: [PATCH] refactor: Remove unused import and add newline --- tools/tools.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/tools.go b/tools/tools.go index 0d3159a4bcece2862b5af7ac445afdeeb03a67b0..bf9fa2d0dcbebd230534802c8aed991231db2d83 100644 --- a/tools/tools.go +++ b/tools/tools.go @@ -14,7 +14,6 @@ import ( "github.com/mark3labs/mcp-go/mcp" ) - // AreaProvider defines the interface for accessing area data. type AreaProvider interface { GetName() string @@ -114,6 +113,7 @@ func (h *Handlers) HandleListAreasAndGoals(ctx context.Context, request mcp.Call }, }, nil } + // HandleGetTimestamp handles the get_timestamp tool call. func (h *Handlers) HandleGetTimestamp(ctx context.Context, request mcp.CallToolRequest) (*mcp.CallToolResult, error) { natLangDate, ok := request.Params.Arguments["natural_language_date"].(string)