prettify/go.mod
Nils Stinnesbeck 8620b17cdc
re-worked module:
* only exporting Print as it can handle both slices and structs
* using 'any' now instead of 'interface{}'
* updated used modules
* removed Year from LICENSE file
* changed my Name in LICENSE file
2023-03-23 18:46:54 +01:00

14 lines
401 B
Modula-2

module git.stinnesbeck.com/nils/prettify
go 1.20
require github.com/TylerBrock/colorjson v0.0.0-20200706003622-8a50f05110d2
require (
github.com/fatih/color v1.15.0 // indirect
github.com/hokaccha/go-prettyjson v0.0.0-20211117102719-0474bc63780f // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.18 // indirect
golang.org/x/sys v0.6.0 // indirect
)