Skip to content

Instantly share code, notes, and snippets.

@reevik
Created February 14, 2022 16:04
Show Gist options
  • Save reevik/f9bfb57c3e8328a03b0047fe5ec72b5a to your computer and use it in GitHub Desktop.
Save reevik/f9bfb57c3e8328a03b0047fe5ec72b5a to your computer and use it in GitHub Desktop.
(deftype command-runner [] ;; ➊
Command
(perform [this metric city day] ;; ➋
(try
(run metric city day) ;; ➌
(catch Exception e
(handle-error e)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment