We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b5fd99 commit 98817c2Copy full SHA for 98817c2
go.mod
@@ -0,0 +1,5 @@
1
+module github.com/compscore/mysql
2
+
3
+go 1.20
4
5
+require github.com/go-sql-driver/mysql v1.7.1
go.sum
@@ -0,0 +1,2 @@
+github.com/go-sql-driver/mysql v1.7.1 h1:lUIinVbN1DY0xBg0eMOzmmtGoHwWBbvnWubQUrtU8EI=
+github.com/go-sql-driver/mysql v1.7.1/go.mod h1:OXbVy3sEdcQ2Doequ6Z5BW6fXNQTmx+9S1MCJN5yJMI=
main.go
@@ -4,6 +4,8 @@ import (
"context"
"database/sql"
6
"fmt"
7
8
+ _ "github.com/go-sql-driver/mysql"
9
)
10
11
type optionsStruct struct {
0 commit comments