File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 9
9
" database/sql"
10
10
" fmt"
11
11
12
- " github.com/JamesStewy /go-mysqldump"
12
+ " github.com/jamf /go-mysqldump"
13
13
" github.com/go-sql-driver/mysql"
14
14
)
15
15
Original file line number Diff line number Diff line change @@ -3,15 +3,15 @@ Create MYSQL dumps in Go without the 'mysqldump' CLI as a dependancy.
3
3
4
4
Example
5
5
6
- This example uses the mymysql driver (example 7 https://github.com/ziutek/mymysql ) to connect to a mysql instance.
6
+ This example uses the mysql driver (https://github.com/go-sql-driver/mysql ) to connect to a mysql instance.
7
7
8
8
package main
9
9
10
10
import (
11
11
"database/sql"
12
12
"fmt"
13
13
14
- "github.com/JamesStewy /go-mysqldump"
14
+ "github.com/jamf /go-mysqldump"
15
15
"github.com/go-sql-driver/mysql"
16
16
)
17
17
You can’t perform that action at this time.
0 commit comments