We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8e0358 commit 150173bCopy full SHA for 150173b
.gitignore
@@ -1,6 +1,3 @@
1
-# If you prefer the allow list template instead of the deny list, see community template:
2
-# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
3
-#
4
# Binaries for programs and plugins
5
*.exe
6
*.exe~
@@ -23,3 +20,16 @@ go.work.sum
23
20
24
21
# env file
25
22
.env
+
+# Go build output directories
+/bin/
26
27
+# IDE and text editor files
28
+.vscode/
29
+.idea/
30
31
+# macOS-specific files
32
+.DS_Store
33
34
+# Logs
35
+*.log
tests/odatasql_test.go
@@ -1,8 +1,9 @@
package tests
import (
- "github.com/maxlambrecht/odatasql"
"testing"
+ "github.com/maxlambrecht/odatasql"
7
)
8
9
func TestConvert(t *testing.T) {
0 commit comments