--input_path
: Path to the input file or directory.--output_path
: Path to the output directory.--output_format
: Output format (e.g., json, csv, html)./path/to/input
with the actual path to your input file or directory. Similarly, replace /path/to/output
with the desired path for the output directory. You can also change csv
to your preferred output format, such as json
or html
.all
: The default target that builds the project (depends on build
).build
: Compiles the project using go build
and creates the binary.clean
: Cleans up the project by running go clean
and removing the binary.test
: Runs tests using go test
in the specified directory.make
command followed by the target name. For example, to build the project, run: