This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(require '[starfederation.datastar.clojure.adapter.http-kit :as hk-gen]) | |
(defn short-sse | |
[handler] | |
(fn [request] | |
(let [hooks (handler request) | |
on-init (:init hooks) | |
on-open (:open hooks) | |
on-close (:close hooks) | |
init-results (when on-init (on-init))] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns utils.query | |
(:require [datomic.api :refer [q]])) | |
(defn- in? | |
[elm coll] | |
(some #(= elm %) coll)) | |
(defn qr | |
"returns the first items of each tuple in `coll`" | |
[coll] |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.