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