- Add directory information with Unicode table borders - Add network information with professional formatting - Add version command - Add comprehensive documentation (README.md, DEVELOPMENT.md) - Improve table output with proper borders and alignment - Add project structure (cmd/, pkg/ directories)
13 lines
213 B
Go
13 lines
213 B
Go
package colors
|
|
|
|
const (
|
|
Reset = "\033[0m"
|
|
Red = "\033[31m"
|
|
Green = "\033[32m"
|
|
Yellow = "\033[33m"
|
|
Blue = "\033[34m"
|
|
Purple = "\033[35m"
|
|
Cyan = "\033[36m"
|
|
Gray = "\033[90m"
|
|
Bold = "\033[1m"
|
|
)
|