Updating references

Given that there is an issue over a year old on the original repo, I'm
forking it so I can use/update it.
This commit is contained in:
Matt Jadud
2025-11-30 15:39:20 -05:00
parent c4b7b8ffe1
commit 596196cdc0
4 changed files with 5 additions and 5 deletions

View File

@@ -14,14 +14,14 @@ liteq allows to run tens of thousands of jobs per second if needed. It can also
### Install ### Install
```sh ```sh
go get github.com/khepin/liteq go get git.jadud.com/jadudm/liteq
``` ```
### Setup and DB creation ### Setup and DB creation
```go ```go
import ( import (
"github.com/khepin/liteq" "git.jadud.com/jadudmliteq"
_ "github.com/mattn/go-sqlite3" _ "github.com/mattn/go-sqlite3"
) )

View File

@@ -7,7 +7,7 @@ import (
"math/rand" "math/rand"
"time" "time"
"github.com/khepin/liteq" "git.jadud.com/jadudm/liteq"
_ "github.com/mattn/go-sqlite3" _ "github.com/mattn/go-sqlite3"
) )

View File

@@ -9,7 +9,7 @@ import (
"testing" "testing"
"time" "time"
"github.com/khepin/liteq/internal" "git.jadud.com/jadudm/liteq/internal"
"github.com/matryer/is" "github.com/matryer/is"
_ "github.com/mattn/go-sqlite3" _ "github.com/mattn/go-sqlite3"
) )

View File

@@ -4,7 +4,7 @@ import (
"context" "context"
"database/sql" "database/sql"
"github.com/khepin/liteq/internal" "git.jadud.com/jadudm/liteq/internal"
) )
// Creates the db file with the tables and indexes // Creates the db file with the tables and indexes