.gitignore 334 B

123456789101112131415161718192021222324252627282930313233
  1. # ---> Go
  2. # Compiled Object files, Static and Dynamic libs (Shared Objects)
  3. *.o
  4. *.a
  5. *.so
  6. # Folders
  7. _obj
  8. _test
  9. # Architecture specific extensions/prefixes
  10. *.[568vq]
  11. [568vq].out
  12. *.cgo1.go
  13. *.cgo2.c
  14. _cgo_defun.c
  15. _cgo_gotypes.go
  16. _cgo_export.*
  17. _testmain.go
  18. log/
  19. bin/
  20. var/
  21. *.exe
  22. *.test
  23. *.prof
  24. .idea/
  25. */.DS_Store
  26. .vscode
  27. go.sum
  28. .vscode/