works enough for now

This commit is contained in:
Benjamin Tayehanpour 2026-06-16 22:47:04 +02:00
commit c04a9a752a
12 changed files with 178 additions and 0 deletions

6
compiler/dns.py Normal file
View file

@ -0,0 +1,6 @@
def build_dns(services, cfg):
return([
{"name": s.name, "ip": s.internal_ip}
for s in services
if "dns" in s.exposure
])