A very small library mod that allows for mod authors to alias tags. This makes it so that two or more tags with different names will share the same contents.
Say there are two tags, `test_a` and `test_b` with the following contents:
```Json
{
"replace": false,
"values": [
"minecraft:diamond_block"
}
}
```
```Json
{
"replace": false,
"values": [
"minecraft:emerald_block"
}
}
```
if you alias both of the tags they will both functionally have the following contents:
```Json
{
"replace": false,
"values": [
"minecraft:diamond_block",
"minecraft:emerald_block"
}
}
```