3 Commits

Author SHA1 Message Date
Matt Jadud
596196cdc0 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.
2025-11-30 15:39:20 -05:00
c4b7b8ffe1 Delete .github/workflows/go.yml 2025-11-30 20:37:28 +00:00
3f639fe803 Update go.mod
Some checks failed
Go / build (push) Has been cancelled
2025-11-30 20:33:10 +00:00
6 changed files with 6 additions and 31 deletions

View File

@@ -1,25 +0,0 @@
# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.22'
- name: Test
run: go test -v ./...

View File

@@ -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"
)

View File

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

2
go.mod
View File

@@ -1,4 +1,4 @@
module github.com/khepin/liteq
module git.jadud.com/jadudm/liteq
go 1.22.0

View File

@@ -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"
)

View File

@@ -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