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