firewall/firewall.ml

7 lines
232 B
OCaml
Raw Normal View History

2022-09-06 17:20:14 +02:00
let json = Yojson.Basic.from_file "config.json"
let config = Config.of_json json
let compiled = Compile.compile config
let nftables = Nftables.to_json compiled
2022-08-29 07:01:56 +02:00
2022-09-06 17:20:14 +02:00
let () = Format.printf "%s\n" (Yojson.Basic.pretty_to_string nftables)