From 596196cdc0a6927794537d6d1f4d0a078ad10cd6 Mon Sep 17 00:00:00 2001 From: Matt Jadud Date: Sun, 30 Nov 2025 15:39:20 -0500 Subject: [PATCH] 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. --- README.md | 4 ++-- bench/main.go | 2 +- internal/jobs_test.go | 2 +- liteq.go | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 135a6c4..8a27dc2 100644 --- a/README.md +++ b/README.md @@ -14,14 +14,14 @@ liteq allows to run tens of thousands of jobs per second if needed. It can also ### Install ```sh -go get github.com/khepin/liteq +go get git.jadud.com/jadudm/liteq ``` ### Setup and DB creation ```go import ( - "github.com/khepin/liteq" + "git.jadud.com/jadudmliteq" _ "github.com/mattn/go-sqlite3" ) diff --git a/bench/main.go b/bench/main.go index 2699f6b..e7f8146 100644 --- a/bench/main.go +++ b/bench/main.go @@ -7,7 +7,7 @@ import ( "math/rand" "time" - "github.com/khepin/liteq" + "git.jadud.com/jadudm/liteq" _ "github.com/mattn/go-sqlite3" ) diff --git a/internal/jobs_test.go b/internal/jobs_test.go index af0fcad..a9117c7 100644 --- a/internal/jobs_test.go +++ b/internal/jobs_test.go @@ -9,7 +9,7 @@ import ( "testing" "time" - "github.com/khepin/liteq/internal" + "git.jadud.com/jadudm/liteq/internal" "github.com/matryer/is" _ "github.com/mattn/go-sqlite3" ) diff --git a/liteq.go b/liteq.go index b9c5a9f..face837 100644 --- a/liteq.go +++ b/liteq.go @@ -4,7 +4,7 @@ import ( "context" "database/sql" - "github.com/khepin/liteq/internal" + "git.jadud.com/jadudm/liteq/internal" ) // Creates the db file with the tables and indexes