Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 1 KB

README.md

File metadata and controls

20 lines (14 loc) · 1 KB

Snippetbox

This repo holds a smaple Go-based Snippetbox application built as I followed Alex Edward's Let's Go book

ui

Notes

The Internal Directory

The internal dir contains special meaning in Go: any packages which live under this dir can only be imported by code inside the parent of the internal dir. This means that code belongs to any packages in the internal folder can only be imported by code inside our snippetbox project. If anotyher pfoject pulls the module they cannot access it

Any packages in internal cannot be imported by code outside the project.

Resources