Artifact bd52030fd556a4dd667c1f21df8713099d4aae55845fe924bf56d82376fdea44:
- File tool/api-compile.janet — part of check-in [1cc0d76954] at 2025-02-09 20:46:08 on branch trunk — initial commit (user: lexi, size: 316) [annotate] [blame] [check-ins using]
(defn api-parse [src] {} #TODO parse json ) (defn api-gen [api] @{} #TODO gen bindings ) (defn main [_ api-src api-dest & _] (def api (with [fd (file/open api-src :r)] (api-gen (api-parse (:read fd :all))))) (def api-bin (make-image api)) (with [fd (file/open api-dest :w)] (:write fd api-bin)) 0)