From 516a1415c2d5b9c1f0c0ad581ee09597e1e92762 Mon Sep 17 00:00:00 2001 From: Avelino <31996+avelino@users.noreply.github.com> Date: Sun, 26 May 2024 13:22:28 -0300 Subject: [PATCH] first deploy in clojars Signed-off-by: Avelino <31996+avelino@users.noreply.github.com> --- README.md | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ad2e77d..4f7af61 100644 --- a/README.md +++ b/README.md @@ -8,9 +8,9 @@ RQ (Redis Queue) is a simple Clojure package for queueing jobs and processing th ```clojure (ns rq.example - (:require [clj-rq.rq :as rq] - [clj-rq.queue :as queue] - [clj-rq.pubsub :as pubsub])) + (:require [com.moclojer.rq :as rq] + [com.moclojer.rq.queue :as queue] + [com.moclojer.rq.pubsub :as pubsub])) (def *redis-pool* (rq/client "redis://localhost:6379/0")) @@ -24,3 +24,15 @@ RQ (Redis Queue) is a simple Clojure package for queueing jobs and processing th (pubsub/publish *redis-pool* "name-subs" "value set") (pubsub/subscribe *redis-pool* #(prn :chan %1 :msg %2) ["name-subs"]) ``` + +## installation + +We distribute the library via [Clojars](https://clojars.org/com.moclojer/rq). + +```edn +com.moclojer/rq {:mvn/version "0.1.0"} +``` + +```clojure +[com.moclojer/rq "0.1.0"] +```