Skip to content

Commit 92064f4

Browse files
committed
Add 'go.mod' and '.gitignore' files
1 parent 9020c7d commit 92064f4

File tree

2 files changed

+47
-0
lines changed

2 files changed

+47
-0
lines changed

.gitignore

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# Object files
2+
*.o
3+
*.ko
4+
*.obj
5+
*.elf
6+
7+
# Precompiled Headers
8+
*.gch
9+
*.pch
10+
11+
# Libraries
12+
*.lib
13+
*.a
14+
*.la
15+
*.lo
16+
17+
# Shared objects (inc. Windows DLLs)
18+
*.dll
19+
*.so
20+
*.so.*
21+
*.dylib
22+
23+
# Executables
24+
*.exe
25+
*.out
26+
*.app
27+
*.i*86
28+
*.x86_64
29+
*.hex
30+
31+
# Debug files
32+
*.dSYM/
33+
34+
# Compiled versions from 'go build'
35+
csv2sql
36+
csv2sql.exe
37+
38+
# ignore cscope and ctags databases
39+
cscope.out
40+
tags
41+
42+
# exclude Vim temp files
43+
*.swp
44+
*.swo

go.mod

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module github.com/wiremoons/csv2sql
2+
3+
go 1.16

0 commit comments

Comments
 (0)