Versions in this module Expand all Collapse all v0 v0.1.0 Jun 16, 2026 Changes in this version + var ErrDatabaseNotFound = errors.New("database file not found") + var ErrUnsupportedDriver = errors.New("unsupported database driver") + type Database struct + func Open(driver, dsn string, poolMaxConns int) (*Database, error) + func (d *Database) Close() error + func (d *Database) DB() *sql.DB + func (d *Database) RunMigrations(driver string) error