.gitignore 363 B

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