We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3c20b9 commit 9861e16Copy full SHA for 9861e16
.gitignore
@@ -13,3 +13,6 @@
13
14
# Dependency directories (remove the comment below to include it)
15
# vendor/
16
+
17
+# Database files - this app creates a local db file
18
+*.db
go.mod
@@ -0,0 +1,5 @@
1
+module github.com/octodemo/advanced-security-go
2
3
+go 1.17
4
5
+require github.com/mattn/go-sqlite3 v1.14.8 // indirect
go.sum
@@ -0,0 +1,2 @@
+github.com/mattn/go-sqlite3 v1.14.8 h1:gDp86IdQsN/xWjIEmr9MF6o9mpksUgh0fu+9ByFxzIU=
+github.com/mattn/go-sqlite3 v1.14.8/go.mod h1:NyWgC/yNuGj7Q9rpYnZvas74GogHl5/Z4A/KQRfk6bU=
0 commit comments