Files
scrap/internal/db/error.go
2025-10-04 23:14:41 +02:00

9 lines
160 B
Go

package db
import "errors"
var (
ErrTxBeginFailed = errors.New("tx: could not begin a Tx")
ErrTxCommitFailed = errors.New("tx: could not commit the Tx")
)