Add associative map constraints and range refinement

This commit is contained in:
2026-08-14 06:26:15 +09:00
parent 8198b615a8
commit cc6ab40807
52 changed files with 8951 additions and 6918 deletions
+15
View File
@@ -0,0 +1,15 @@
let
Service = {
port = Int & >= 1 & <= 65535;
enabled = Bool default true;
};
in
{
api = {
port = 8080;
};
worker = {
port = 8081;
enabled = false;
};
} as {...Service}