fehlerbehebung

This commit is contained in:
xoy 2023-01-28 18:45:48 +01:00
parent 0e458847e7
commit 4891a786d2
3 changed files with 6 additions and 0 deletions

View File

@ -2,6 +2,8 @@ package main
import (
"database/sql"
_ "github.com/go-sql-driver/mysql"
)
func dbConnect(username string, password string, address string, port string, database string) *sql.DB {

2
go.mod
View File

@ -1,3 +1,5 @@
module xoy.dev/ctdo
go 1.19
require github.com/go-sql-driver/mysql v1.7.0 // indirect

2
go.sum Normal file
View File

@ -0,0 +1,2 @@
github.com/go-sql-driver/mysql v1.7.0 h1:ueSltNNllEqE3qcWBTD0iQd3IpL/6U+mJxLkazJ7YPc=
github.com/go-sql-driver/mysql v1.7.0/go.mod h1:OXbVy3sEdcQ2Doequ6Z5BW6fXNQTmx+9S1MCJN5yJMI=