Skip to content

Commit

Permalink
Add 'go.mod' and '.gitignore' files
Browse files Browse the repository at this point in the history
  • Loading branch information
wiremoons committed Mar 6, 2021
1 parent 9020c7d commit 92064f4
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# Object files
*.o
*.ko
*.obj
*.elf

# Precompiled Headers
*.gch
*.pch

# Libraries
*.lib
*.a
*.la
*.lo

# Shared objects (inc. Windows DLLs)
*.dll
*.so
*.so.*
*.dylib

# Executables
*.exe
*.out
*.app
*.i*86
*.x86_64
*.hex

# Debug files
*.dSYM/

# Compiled versions from 'go build'
csv2sql
csv2sql.exe

# ignore cscope and ctags databases
cscope.out
tags

# exclude Vim temp files
*.swp
*.swo
3 changes: 3 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module github.com/wiremoons/csv2sql

go 1.16

0 comments on commit 92064f4

Please sign in to comment.