We need to support "Commands" in the project, (e.g., create, get, docs, ...). We need a data type for this. It might be a struct or an interface.
Each command will need to have:
- A "keyword" (e.g., create, get, docs).
- A "description" for a help screen
- A func that takes the passed in arguments and executes.
We need to support "Commands" in the project, (e.g., create, get, docs, ...). We need a data type for this. It might be a struct or an interface.
Each command will need to have: