//go:build tools // Package main contains tool imports to ensure Phase 1 dependencies are pinned in go.mod. // This file uses the standard Go tools pattern to track direct dependencies // that are not yet imported by production code but will be used in later plans. package main import ( _ "github.com/charmbracelet/lipgloss" _ "github.com/panjf2000/ants/v2" _ "github.com/petar-dambovaliev/aho-corasick" _ "github.com/spf13/cobra" _ "github.com/spf13/viper" _ "github.com/stretchr/testify/assert" _ "golang.org/x/crypto/argon2" _ "golang.org/x/time/rate" _ "gopkg.in/yaml.v3" _ "modernc.org/sqlite" )