Dima 9e7f50672c Update DB 3 dni temu
..
db.go 9e7f50672c Update DB 3 dni temu
db_config.go 9e7f50672c Update DB 3 dni temu
error.go 7612794c8f Add DB 7 miesięcy temu
readme.md c1444ec377 Add docs 7 miesięcy temu
tx.go 24549ee424 Add TX 3 miesięcy temu

readme.md

Usage example

dbConn, err := db.NewDB(
    db.NewConfig(
        db.WithDriver("mysql"),
        db.WithUsername("username"),
        db.WithPassword("password"),
        db.WithDatabase("db"),        
    ),
)

if err != nil {
    // TODO
}

err = dbConn.Ping()