package myth import ( "database/sql" "errors" ) // ErrSQLNoRows SQL func ErrSQLNoRows(err error) bool { return errors.Is(err, sql.ErrNoRows) }