The dependency github.com/olekukonko/tablewriter changed their public api with the v1.0 release from a few days ago, breaking this package (does not compile anymore).
Since go has only very limited version pinning support from v0.x.x to v1.x.x releases, this will affect/break most projects using this module.
For affected users:
You can temporarily force-pin the old dependency version in your go.mod file by adding this line:
replace github.com/olekukonko/tablewriter => github.com/olekukonko/tablewriter v0.0.5
But be aware that your linter/ci pipeline may complain about it.