mirror of
https://github.com/zaphar/ucg.git
synced 2025-07-22 18:19:54 -04:00
11 lines
199 B
Plaintext
11 lines
199 B
Plaintext
let host_mod = TRACE module{
|
|
hostname="",
|
|
mem=2048,
|
|
cpu=2,
|
|
} => {
|
|
let config = {
|
|
hostname = mod.hostname,
|
|
memory_size = mod.mem,
|
|
cpu_count = mod.cpu,
|
|
};
|
|
}; |