From a96c9b537c68e48399fdd832394b0cd62117989b Mon Sep 17 00:00:00 2001 From: MohamedBassem Date: Sun, 27 Oct 2024 23:29:56 +0000 Subject: [PATCH] readme: Minor readme tweaking --- README.md | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0b018be..e427415 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,8 @@ -
- - GitHub Actions Workflow Status - - - GitHub Release - -
- # Liteque +![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/hoarder-app/liteque/ci.yml) ![NPM Version](https://img.shields.io/npm/v/liteque) + + A simple typesafe sqlite-based job queue for Node.js. ## Installation @@ -20,7 +14,7 @@ $ npm install liteque ## Usage ```ts -import { buildDBClient, SqliteQueue } from "liteque"; +import { buildDBClient, Runner, SqliteQueue } from "liteque"; import { z } from "zod"; const db = buildDBClient(":memory:", true);