Experimental implementaion of [function modifier](https://docs.soliditylang.org/en/latest/contracts.html#function-modifiers) on cosmwasm.
-
in `~/cargo/config`
```
[net]
git-fetch-with-cli = true
```
in cargo.toml
```toml
[dependencies]
modifier_macro = { git="ssh://git@github.com/reactor-money/modifier_macro.git" }
```
```rust
use modifier_macro::modifier;
fn main() {
}
```