Go implementation of pdsadmin cli

chore: add go ignores

authored by quietengineer.fyi and committed by Tangled f75bd0d0 9350327c

Changed files
+32 -1
+32 -1
.gitignore
··· 1 - node_modules 1 + # Binaries for programs and plugins 2 + *.exe 3 + *.exe~ 4 + *.dll 5 + *.so 6 + *.dylib 7 + 8 + # Test binary, built with `go test -c` 9 + *.test 10 + 11 + # Code coverage profiles and other test artifacts 12 + *.out 13 + coverage.* 14 + *.coverprofile 15 + profile.cov 16 + 17 + # Dependency directories 18 + vendor/ 19 + 20 + # Go workspace file 21 + go.work 22 + go.work.sum 23 + 24 + # goreleaser 25 + dist/ 26 + 27 + # env file 28 + *.env 29 + 30 + # Editor/IDE 31 + .idea/ 32 + .vscode/