beherbergung/backend/src/beherbergung/model/export.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

8 lines
192 B
Clojure

(ns beherbergung.model.export
(:require [clojure.spec.alpha :as s]
[specialist-server.type :as t]))
(s/def ::exit t/int)
(s/def ::result (s/keys :req-un [::exit ::out ::err]))