Hi, I found def.run is missing in gyr and I wrote one for myself. You may want to add it to gyr. Cheers ``` (defmacro def.run [module & defs] `(do ~@(map (fn [[params body]] `(-> (js/angular.module ~(str module)) (.run (fn ~params ~body)))) defs))) ```