feat: All encryption/decryption now happens in-memory.

Release-as: v0.3.0
This commit is contained in:
2026-06-16 10:06:30 -04:00
parent 41decd9cdb
commit fe2b256bd6
8 changed files with 94 additions and 104 deletions

View File

@@ -75,7 +75,7 @@ envr_dir :: proc(config_path: string) -> string {
return filepath.dir(config_path)
}
data_encrypted_path :: proc(config_path: string) -> string {
data_path :: proc(config_path: string) -> string {
path, _ := filepath.join([]string{envr_dir(config_path), "data.envr"})
return path
}