beherbergung/backend/src/beherbergung/auth/uuid/core.clj
Johannes Lötzsch 7e8daca015 backend: template (from swlkup)
TODO:
* debug why http://localhost:4000/graphiql/index.html doesn't load
* adapt tests from swlkup
* adapt flake from swlkup and test build pipeline
2022-03-06 23:09:59 +01:00

7 lines
180 B
Clojure

(ns beherbergung.auth.uuid.core)
(defn uuid
"Using version 4 (random) UUIDs, we avoid exposing the creation date of database records."
[]
(str (java.util.UUID/randomUUID)))