Skip to content

Instantly share code, notes, and snippets.

@bcambel
Created June 6, 2016 13:03
Show Gist options
  • Select an option

  • Save bcambel/2ce1d41b65829e203942e451a3fd86a9 to your computer and use it in GitHub Desktop.

Select an option

Save bcambel/2ce1d41b65829e203942e451a3fd86a9 to your computer and use it in GitHub Desktop.
(defmulti transformer-func
(fn[structure]
(:f structure)))
(defmethod transformer-func :url
[structure]
((:url transformators) (:data structure)))
(defmethod transformer-func :data
[structure]
((:data transformators) (:data structure)))
(defmethod transformer-func :ip
[structure]
((:ip transformators) (:data structure)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment