Skip to content

Latest commit

 

History

History
18 lines (11 loc) · 367 Bytes

notes.MD

File metadata and controls

18 lines (11 loc) · 367 Bytes

notes

  • encoding will be handled by a library called Bento4.
  • go get is the default tool used to fetch dependencies.

go mod

is a dependency manager that keeps track of all versio ns used in our project.

go mod init encoder # any arbitraty name of your choice

fetch missing deps during first run and add it to file go.mod

packages

govalidator