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 {
workspace string
dataDir string
skillsLoader *skills.SkillsLoader
memory *MemoryStore
tools *tools.ToolRegistry // Direct reference to tool registry
mcpManager *mcp.Manager // MCP server manager
enabledChannels []string // Active communication channels
memoryToolEnabled bool // Whether memory tool is registered
workspace string
dataDir string
skillsLoader *skills.SkillsLoader
memory *MemoryStore
tools *tools.ToolRegistry // Direct reference to tool registry
mcpManager *mcp.Manager // MCP server manager
enabledChannels []string // Active communication channels
memoryToolEnabled bool // Whether memory tool is registered
}
func getGlobalConfigDir() string {