mirror of
https://github.com/penpot/penpot.git
synced 2026-04-26 11:48:28 +00:00
22 lines
679 B
Clojure
22 lines
679 B
Clojure
;; This Source Code Form is subject to the terms of the Mozilla Public
|
|
;; License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
;; file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
;;
|
|
;; Copyright (c) KALEIDOS INC
|
|
|
|
(ns app.plugins
|
|
"RPC for plugins runtime."
|
|
(:require
|
|
[app.main.features :as features]
|
|
[app.main.store :as st]
|
|
[app.plugins.api :as api]
|
|
[app.util.globals :refer [global]]
|
|
[app.util.object :as obj]))
|
|
|
|
(defn init!
|
|
[]
|
|
(when (features/active-feature? @st/state "plugins/runtime")
|
|
(when-let [init-runtime (obj/get global "initPluginsRuntime")]
|
|
(let [context (api/create-context)]
|
|
(init-runtime context)))))
|