Add missing ns docstrings

This commit is contained in:
Gabriel Horner
2023-07-27 10:51:46 -04:00
parent 7bca841afe
commit 6cd3b18ed9
2 changed files with 2 additions and 1 deletions

View File

@@ -1,5 +1,5 @@
(ns frontend.handler.db-based.property
"Block properties handler."
"Properties handler for db graphs"
(:require [clojure.edn :as edn]
[clojure.string :as string]
[frontend.db :as db]

View File

@@ -1,4 +1,5 @@
(ns frontend.handler.file-based.property
"Properties handler for file graphs and file graph specific feature implementations"
(:require [frontend.handler.file-based.property.util :as property]
[frontend.config :as config]))