A simple DB migration module for Nim

2020-12-12 Thread spamsalty
Hello. I think Allographer's [1] schema builder is good, so I made a simple macro for DB migration logic based on Allographer. I named it - Nimigration [2] It does only one thing, prevent a migration logic executed twice. This is my first Nim package. Don't be so harsh on me :D Thank you. [1]

Passing template's argument to children template?

2020-12-07 Thread spamsalty
Hello. I am exploring Nim's template system. It looks awesome. I have a question. parent_template MacroSymbol: children_template: Run is there a way to pass MacroSymbol as an untyped argument to children_template? Thanks in advance!