blob: d436d19748b35628a15fd0b957af978b82ae7259 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
(.module:
[lux #*
[data
[collection
["." dictionary]]]]
["." / #_
["#." common]
["#." host]
[//
[runtime (#+ Bundle)]]])
(def: #export bundle
Bundle
($_ dictionary.merge
/common.bundle
/host.bundle
))
|