package
0.0.0-20180717203741-bcf633326f51
Repository: https://github.com/agencypmg/go-from-scratch.git
Documentation: pkg.go.dev
# Functions
EmptyId returns an Id without any data in it.This can be used instead of nil to indicate a zero value.
MustId panics if err if not nil.It returns id otherwise.
NewId returns a new Id or an error is one could not be created.
ParseId attempts to parse s and return the Id parsed from it.
ParseIdBytes attempts to parse b and return the Id parsed from it.
# Variables
No description provided by the author
# Type aliases
Id is the type that we are going to use as an identifier throughout the application.