Go - Modules & Workspace Setup
          Beginner 10/10
          Teacher 10/10
          Architect 10/10
        
        
        
        
Initialize a Module
go mod init example.com/app
Adding Dependencies
go get github.com/google/uuid@latest
go mod tidy
Workspaces
Use go work to manage multi-module repos:
go work init ./svc-a ./svc-b