config storage

This commit is contained in:
tildearrow 2025-09-28 20:32:30 -05:00
parent 0f7e1a50c9
commit 03fd518e9b
7 changed files with 74 additions and 3 deletions

View file

@ -87,3 +87,7 @@ std::string taDecodeBase64(const char* buf) {
return data;
}
std::string taDecodeBase64(const std::string& str) {
return taDecodeBase64(str.c_str());
}