From c17bb85ebcc006ee90f6720afc208c13ec599a2a Mon Sep 17 00:00:00 2001 From: Michael Jerger <michael.jerger@meissa-gmbh.de> Date: Fri, 24 Jan 2025 14:42:08 +0100 Subject: [PATCH] add some baseline doc --- src/dda/backup/backup.clj | 1 + src/dda/backup/backup/domain.clj | 1 + src/dda/backup/config.clj | 2 +- src/dda/backup/core.clj | 1 + src/dda/backup/core/domain.clj | 1 + src/dda/backup/infrastructure.clj | 1 + src/dda/backup/postgresql.clj | 1 + src/dda/backup/postgresql/domain.clj | 1 + src/dda/backup/restic.clj | 1 + src/dda/backup/restic/domain.clj | 1 + src/dda/backup/restore.clj | 1 + src/dda/backup/restore/domain.clj | 1 + 12 files changed, 12 insertions(+), 1 deletion(-) diff --git a/src/dda/backup/backup.clj b/src/dda/backup/backup.clj index 5facd07..9cb2663 100644 --- a/src/dda/backup/backup.clj +++ b/src/dda/backup/backup.clj @@ -1,4 +1,5 @@ (ns dda.backup.backup + "Part of API, represents the application service layer." (:require [orchestra.core :refer [defn-spec]] [clojure.spec.alpha :as s] diff --git a/src/dda/backup/backup/domain.clj b/src/dda/backup/backup/domain.clj index 6002961..88b6339 100644 --- a/src/dda/backup/backup/domain.clj +++ b/src/dda/backup/backup/domain.clj @@ -1,4 +1,5 @@ (ns dda.backup.backup.domain + "Intended for internal use only, represents the domain layer." (:require [orchestra.core :refer [defn-spec]] [clojure.spec.alpha :as s] diff --git a/src/dda/backup/config.clj b/src/dda/backup/config.clj index 4fea21e..6690b55 100644 --- a/src/dda/backup/config.clj +++ b/src/dda/backup/config.clj @@ -1,5 +1,5 @@ (ns dda.backup.config - "{:test huhu :long-name #env LOGNAME :gopass-pw #gopass [sopra/test.de] :gopass-field-url #gopass [sopra/test.de url]}" + "Part of API, represents the application service layer." (:require [aero.core :as aero] [dda.backup.core :as bc] [dda.backup.infrastructure :as i])) diff --git a/src/dda/backup/core.clj b/src/dda/backup/core.clj index d32a676..29f5ba2 100644 --- a/src/dda/backup/core.clj +++ b/src/dda/backup/core.clj @@ -1,4 +1,5 @@ (ns dda.backup.core + "Part of API, represents the application service layer." (:require [orchestra.core :refer [defn-spec]] [clojure.spec.alpha :as s] diff --git a/src/dda/backup/core/domain.clj b/src/dda/backup/core/domain.clj index c137266..68d03f2 100644 --- a/src/dda/backup/core/domain.clj +++ b/src/dda/backup/core/domain.clj @@ -1,4 +1,5 @@ (ns dda.backup.core.domain + "Intended for internal use only, represents the domain layer." (:require [clojure.spec.alpha :as s])) diff --git a/src/dda/backup/infrastructure.clj b/src/dda/backup/infrastructure.clj index 51677e7..70e4265 100644 --- a/src/dda/backup/infrastructure.clj +++ b/src/dda/backup/infrastructure.clj @@ -1,4 +1,5 @@ (ns dda.backup.infrastructure + "Intenden for internal use, represents the infrastructure layer." (:require [orchestra.core :refer [defn-spec]] [babashka.tasks :as t] [dda.backup.core.domain :as core])) diff --git a/src/dda/backup/postgresql.clj b/src/dda/backup/postgresql.clj index 68a2d19..d8e70b5 100644 --- a/src/dda/backup/postgresql.clj +++ b/src/dda/backup/postgresql.clj @@ -1,4 +1,5 @@ (ns dda.backup.postgresql + "Part of API, represents the application service layer." (:require [orchestra.core :refer [defn-spec]] [clojure.spec.alpha :as s] diff --git a/src/dda/backup/postgresql/domain.clj b/src/dda/backup/postgresql/domain.clj index fd2c55f..1b21f50 100644 --- a/src/dda/backup/postgresql/domain.clj +++ b/src/dda/backup/postgresql/domain.clj @@ -1,4 +1,5 @@ (ns dda.backup.postgresql.domain + "Intended for internal use only, represents the domain layer." (:require [orchestra.core :refer [defn-spec]] [clojure.spec.alpha :as s] diff --git a/src/dda/backup/restic.clj b/src/dda/backup/restic.clj index f39b8ce..82bfc1e 100644 --- a/src/dda/backup/restic.clj +++ b/src/dda/backup/restic.clj @@ -1,4 +1,5 @@ (ns dda.backup.restic + "Part of API, represents the application service layer." (:require [orchestra.core :refer [defn-spec]] [clojure.spec.alpha :as s] diff --git a/src/dda/backup/restic/domain.clj b/src/dda/backup/restic/domain.clj index 4658dd6..9f16812 100644 --- a/src/dda/backup/restic/domain.clj +++ b/src/dda/backup/restic/domain.clj @@ -1,4 +1,5 @@ (ns dda.backup.restic.domain + "Intended for internal use only, represents the domain layer." (:require [orchestra.core :refer [defn-spec]] [clojure.spec.alpha :as s] diff --git a/src/dda/backup/restore.clj b/src/dda/backup/restore.clj index e4f47a4..0512986 100644 --- a/src/dda/backup/restore.clj +++ b/src/dda/backup/restore.clj @@ -1,4 +1,5 @@ (ns dda.backup.restore + "Part of API, represents the application service layer." (:require [orchestra.core :refer [defn-spec]] [clojure.spec.alpha :as s] diff --git a/src/dda/backup/restore/domain.clj b/src/dda/backup/restore/domain.clj index 1ad6fa3..747fa99 100644 --- a/src/dda/backup/restore/domain.clj +++ b/src/dda/backup/restore/domain.clj @@ -1,4 +1,5 @@ (ns dda.backup.restore.domain + "Intended for internal use only, represents the domain layer." (:require [orchestra.core :refer [defn-spec]] [clojure.spec.alpha :as s]