fix: use MustParse("xxx") instead of Must(Parse("xxxx")) (#106)

* fix to use MustParse

* use MustParse(...)  inseted of Must(Parse(...))

---------

Co-authored-by: Noah Dietz <noahdietz@users.noreply.github.com>
Co-authored-by: bormanp <122468813+bormanp@users.noreply.github.com>
3 files changed
tree: 8f06093ba07dd7e4c3613e6cfcc321162779c705
  1. .github/
  2. CHANGELOG.md
  3. CONTRIBUTING.md
  4. CONTRIBUTORS
  5. dce.go
  6. doc.go
  7. go.mod
  8. hash.go
  9. json_test.go
  10. LICENSE
  11. marshal.go
  12. node.go
  13. node_js.go
  14. node_net.go
  15. null.go
  16. null_test.go
  17. README.md
  18. seq_test.go
  19. sql.go
  20. sql_test.go
  21. time.go
  22. util.go
  23. uuid.go
  24. uuid_test.go
  25. version1.go
  26. version4.go
  27. version6.go
  28. version7.go
README.md

uuid

The uuid package generates and inspects UUIDs based on RFC 4122 and DCE 1.1: Authentication and Security Services.

This package is based on the github.com/pborman/uuid package (previously named code.google.com/p/go-uuid). It differs from these earlier packages in that a UUID is a 16 byte array rather than a byte slice. One loss due to this change is the ability to represent an invalid UUID (vs a NIL UUID).

Install
go get github.com/google/uuid
Documentation

Go Reference

Full go doc style documentation for the package can be viewed online without installing this package by using the GoDoc site here: https://pkg.go.dev/github.com/google/uuid