mirror of
https://git.numenor-labs.us/dsfx.git
synced 2025-04-29 16:20:34 +00:00
Previously, the 'keyRaw' slice was being allocated with a length of 0. However, the 'Read()' function will only read up to the slice's length. Together, this means that we always read 0 bytes from the admins file. Now, we can use the 'io.ReadAll()' function to read all of the admins file before parsing.