style: fix gofmt alignment in ContextBuilder struct

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Kohei 2026-02-22 11:57:56 +09:00
parent fc02b81caa
commit 8f2b8aa514

View file

@ -15,14 +15,14 @@ import (
) )
type ContextBuilder struct { type ContextBuilder struct {
workspace string workspace string
dataDir string dataDir string
skillsLoader *skills.SkillsLoader skillsLoader *skills.SkillsLoader
memory *MemoryStore memory *MemoryStore
tools *tools.ToolRegistry // Direct reference to tool registry tools *tools.ToolRegistry // Direct reference to tool registry
mcpManager *mcp.Manager // MCP server manager mcpManager *mcp.Manager // MCP server manager
enabledChannels []string // Active communication channels enabledChannels []string // Active communication channels
memoryToolEnabled bool // Whether memory tool is registered memoryToolEnabled bool // Whether memory tool is registered
} }
func getGlobalConfigDir() string { func getGlobalConfigDir() string {