Created
May 15, 2016 19:21
-
-
Save alex-lairan/f7a207b533489b3663b59617acb37596 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
macro generic_crud(*names) | |
{% for name, index in names %} | |
generic_create {{name}} | |
generic_read {{name}} | |
generic_update {{name}} | |
generic_delete {{name}} | |
{% end %} | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment