Add urlstore call
This commit is contained in:
parent
b379b3ef4a
commit
ed3afe6cd0
15
main.lisp
15
main.lisp
|
@ -1120,6 +1120,21 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
;; —————————————————————————————————————
|
||||||
|
;; URLSTORE CALLS
|
||||||
|
|
||||||
|
;; STRING [:BOOLEAN :BOOLEAN] → ALIST || (NIL STRING)
|
||||||
|
(defun urlstore-add (url &key (pin 'T) (trickle ""))
|
||||||
|
"Add a URL via urlstore.
|
||||||
|
/ipns/docs.ipfs.io/reference/api/http/#api-v0-urlstore-add"
|
||||||
|
(bind-api-alist
|
||||||
|
(ipfs-call "urlstore/add" `(("arg" ,url)("pin" ,pin)
|
||||||
|
,(when (not (empty-string-p trickle))
|
||||||
|
`("trickle" ,trickle))))))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
;; —————————————————————————————————————
|
;; —————————————————————————————————————
|
||||||
;; VERSION CALLS
|
;; VERSION CALLS
|
||||||
|
|
||||||
|
|
|
@ -163,6 +163,9 @@
|
||||||
:swarm-filters-rm
|
:swarm-filters-rm
|
||||||
:swarm-peers
|
:swarm-peers
|
||||||
|
|
||||||
|
;; urlstore calls
|
||||||
|
:urlstore-add
|
||||||
|
|
||||||
;; version calls
|
;; version calls
|
||||||
:version
|
:version
|
||||||
:version-deps))
|
:version-deps))
|
||||||
|
|
Ŝarĝante…
Reference in New Issue