File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11(ns chromex.core
22 (:require [chromex.config :as config]
33 [chromex.marshalling]
4+ [chromex.version]
45 [chromex.chrome-event-subscription]
56 [chromex.chrome-event-channel]
67 [chromex.chrome-port]
78 [chromex.chrome-storage-area]))
89
910(def get-active-config config /get-active-config )
10- (def set-active-config! config /set-active-config! )
11+ (def set-active-config! config /set-active-config! )
Original file line number Diff line number Diff line change 1+ (ns chromex.version )
2+
3+ (def current-version " 0.4.3-SNAPSHOT" ) ; this should match our project.clj
4+
5+ (defmacro get-current-version []
6+ current-version )
Original file line number Diff line number Diff line change 1+ (ns chromex.version
2+ (:require-macros [chromex.version :refer [get-current-version]]))
3+
4+ (def current-version (get-current-version ))
5+
6+ (defn get-current-version []
7+ current-version )
You can’t perform that action at this time.
0 commit comments