implement a multi-file template interpreter

This commit is contained in:
2025-09-05 01:46:26 -06:00
parent 0bccd28134
commit 88d757546a
25 changed files with 1525 additions and 1 deletions

View File

@ -0,0 +1,12 @@
// Simple test to verify parsing
server api {
host "localhost"
port 3001
}
entity User {
name: string required
email: string required
}
page Home at "/" layout public