syncthing-client

Clojure library to interact with Syncthing API


License
EPL-1.0

Documentation

syncthing-client

Clojars Project

A Clojure library designed to interact with Syncthing REST API

Usage

(require '[syncthing-client.client :as client])
(def my-client (client/new-client "http://host:8384" "API-KEY"))

;; Now you can call any of the available protocols methods on my-client

(client/get-config my-client)
(client/set-config my-client ..new-config..)