mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-04-25 16:36:21 +02:00
10 lines
129 B
Jsonnet
10 lines
129 B
Jsonnet
|
|
|
||
|
|
local all = import "all-patterns.jsonnet";
|
||
|
|
|
||
|
|
std.foldl(
|
||
|
|
function(m, p) m + { [p.pattern.name]: p.module},
|
||
|
|
all,
|
||
|
|
{}
|
||
|
|
)
|
||
|
|
|