mirror of
https://github.com/penpot/penpot.git
synced 2025-01-09 00:10:11 -05:00
8 lines
165 B
Clojure
8 lines
165 B
Clojure
|
(ns uxbox.config
|
||
|
(:require [clojure.java.io :as io]
|
||
|
[nomad :refer [read-config]]))
|
||
|
|
||
|
(defn component
|
||
|
[path]
|
||
|
(nomad/read-config (io/resource path)))
|