The cmd directory contains the application's entry points. Each subdirectory represents a separate executable program.
Structure
iniq/: Main INIQ CLI application
main.go: Entry point for the INIQ command-line tool
Usage
This directory follows the standard Go project layout. Each subdirectory should contain a main.go file that serves as the entry point for a specific executable.
The main application logic should not be implemented here. Instead, the code in this directory should:
Parse command-line flags and arguments
Set up configuration
Initialize and wire together components from the internal and pkg directories